← Back to Skills Marketplace
qweadzchn

Agent Visio Use

by qweadzchn · GitHub ↗ · v0.1.2 · MIT-0
cross-platform ⚠ suspicious
132
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install diagforge-agent-visio-use
Description
Bootstrap skill for DiagForge. Use this skill to onboard an agent into the DiagForge GitHub repository, understand the project structure, run the canonical c...
README (SKILL.md)

DiagForge Bootstrap

This is a lightweight onboarding skill for the DiagForge repository.

It is not the full DiagForge system. Its job is to guide an agent to the correct GitHub repository, documents, smoke test, and execution flow.

DiagForge itself is an agent-driven closed loop built on top of Microsoft Visio. Its goal is to turn reference figures into directly editable diagram assets by helping agents operate Visio more like a capable human user rather than as a blind API caller.

What this skill can do

This skill can help an agent:

  • understand what DiagForge is trying to achieve
  • find the correct GitHub repository and entry documents
  • avoid random first-run behavior and jump into the intended workflow
  • run the canonical cold-start smoke test
  • start reproducing reference figures through the DiagForge Visio loop
  • move toward a result that a human can continue editing directly in Visio

Typical outcomes

After using this skill, an agent should be able to:

  • explain the DiagForge workflow clearly
  • bootstrap itself into the repository with the correct read order
  • validate that the Visio bridge and execution path are working
  • begin work on figure reproduction with better layer awareness
  • help produce editable .vsdx outputs instead of dead image copies

What this skill is for

Use this skill when an agent needs to:

  • find the DiagForge source repository
  • understand the top-level architecture quickly
  • avoid free-form blind retries
  • run the canonical cold-start smoke test
  • begin work in the correct layer

When to use it

Use this skill when:

  • an agent is entering DiagForge for the first time
  • a new environment needs to be validated before real drawing work
  • a user wants an agent to help reproduce a figure through Visio
  • the goal is not only to look similar to the reference, but to obtain a directly editable diagram asset

What this skill is not

This skill does not bundle the whole repository. It does not include Visio bridge code, benchmark PNGs, or runtime artifacts.

The full project lives in the GitHub repository:

https://github.com/qweadzchn/DiagForge

Recommended workflow

  1. Clone the GitHub repository locally.
  2. Read the cold-start entry documents.
  3. Run the canonical smoke test before doing open-ended drawing work.
  4. Only then move on to real jobs or system improvements.

Clone the repository

git clone [email protected]:qweadzchn/DiagForge.git
cd DiagForge

If SSH is not available, use HTTPS instead.

Read order

Read these files first:

  1. AGENT_START_HERE.md
  2. AGENT_GUIDE.md
  3. GET_STARTED.md
  4. docs/human/setup/AGENT_COLD_START_SMOKE_TEST.md
  5. MODE_POLICY.md

Canonical smoke test

From the repo root:

python Setup\prepare_smoke_test.py --config Setup\examples\smoke-test-inputpng-1.json
python Setup\run_draw_job.py --config Setup\examples\smoke-test-inputpng-1.json
python Setup\execute_drawdsl.py --config Setup\examples\smoke-test-inputpng-1.json --round 1 --save-final

Expected outputs:

  • OutputPreview/smoke-inputpng-1/round-01.png
  • OutputEditable/1_smoke_test_final.vsdx

Routing rule

When working inside DiagForge:

  • if the issue is round-specific, keep it in review artifacts
  • if it looks structural but still needs validation, write a proposal
  • if it is already reusable experience, promote it into a lesson
  • if the shared fix is clear, patch the owning layer directly

Where to go next

See:

  • README.md
  • CONTRIBUTING.md
  • docs/architecture/FEEDBACK_PROMOTION_LOOP.md
Usage Guidance
This skill is a lightweight guide that points agents to the DiagForge GitHub repository and shows which Python smoke-test scripts to run. Before using it: 1) Verify the upstream GitHub repo (https://github.com/qweadzchn/DiagForge) yourself; 2) Understand that the smoke-test commands execute Python scripts from that repo—review those scripts before running them locally; 3) Only set VISIO_BRIDGE_TOKEN if you trust and control a local Visio bridge instance, since it is a sensitive token used to access that bridge; 4) Use HTTPS cloning if you don't want to expose SSH keys; and 5) Be aware that running repository code can perform arbitrary actions on your machine, so run in a controlled environment if you have any doubts.
Capability Analysis
Type: OpenClaw Skill Name: diagforge-agent-visio-use Version: 0.1.2 The skill functions as a bootstrap tool that instructs the agent to clone a remote GitHub repository (github.com/qweadzchn/DiagForge) and execute several Python scripts from it. While this behavior is aligned with the stated purpose of onboarding, the pattern of downloading and executing remote code constitutes a high-risk execution flow (RCE). The skill also requires a sensitive environment variable (VISIO_BRIDGE_TOKEN), which, although documented in QUICKSTART.md as a local token, adds to the risk profile of the automated setup process.
Capability Assessment
Purpose & Capability
The skill's name and description match its runtime instructions: it directs an agent to clone a GitHub repo, read specific docs, and run the repository's smoke-test Python scripts. Requested binaries (git, python) are appropriate for those actions.
Instruction Scope
SKILL.md limits the agent to cloning the repo, reading listed docs, and executing the canonical smoke-test commands in the repository. These actions are within the stated onboarding/bootstrap scope. Note: the instructions run Python scripts that live in the external repository, so running them executes code fetched from GitHub (normal for this use case but worth review).
Install Mechanism
This is an instruction-only skill with no install spec and no code files included in the package—lowest install risk. It relies on existing git/python on PATH and on the upstream GitHub repository for all runtime code.
Credentials
The skill declares VISIO_BRIDGE_TOKEN as a required env var. That token is plausible for running bridge-backed smoke tests that interact with Microsoft Visio, but it is not required for cloning or reading the repository. QUICKSTART.md explicitly states the token is only needed for the bridge-backed smoke test and should be set only after verifying the upstream repo. This is a reasonable design, but users should treat the token as a sensitive local credential and only provide it when they intend to run Visio bridge operations.
Persistence & Privilege
The skill does not request persistent or elevated platform privileges. always:false and disable-model-invocation:false are standard; the skill does not modify other skills or system-wide agent settings.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install diagforge-agent-visio-use
  3. After installation, invoke the skill by name or use /diagforge-agent-visio-use
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.1.2
- Bumped version to 0.1.2 with no functional or documentation changes. - No updates to SKILL.md content or other files; structure and instructions remain identical.
v0.1.1
- Initial release of the diagforge-bootstrap onboarding skill for DiagForge. - Provides guidance for agents to onboard, understand repository structure, and execute the canonical cold-start smoke test. - Helps agents start the Visio-based drawing workflow safely and move toward producing editable diagram assets. - Includes recommended workflow, file reading order, and example usage instructions for new environments.
Metadata
Slug diagforge-agent-visio-use
Version 0.1.2
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is Agent Visio Use?

Bootstrap skill for DiagForge. Use this skill to onboard an agent into the DiagForge GitHub repository, understand the project structure, run the canonical c... It is an AI Agent Skill for Claude Code / OpenClaw, with 132 downloads so far.

How do I install Agent Visio Use?

Run "/install diagforge-agent-visio-use" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Agent Visio Use free?

Yes, Agent Visio Use is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Agent Visio Use support?

Agent Visio Use is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Agent Visio Use?

It is built and maintained by qweadzchn (@qweadzchn); the current version is v0.1.2.

💬 Comments