← Back to Skills Marketplace
qweadzchn

DiagForge Bootstrap

by qweadzchn · GitHub ↗ · v0.1.1 · MIT-0
cross-platform ⚠ suspicious
121
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install diagforge-visio-user
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 an instruction-only bootstrap: it points the agent to the GitHub repo and tells it to run Python smoke-test scripts found there. Before installing or running it: (1) verify the VISIO_BRIDGE_TOKEN purpose and minimize its scope/privileges; (2) prefer cloning via HTTPS if you don't want to expose SSH keys; (3) inspect the repository's Setup/*.py scripts and any network calls they make before executing them, and run tests in a sandbox or isolated environment if you can. If you don't trust the repo or can't review the code, don't provide sensitive tokens or run the smoke-test commands on a production machine.
Capability Analysis
Type: OpenClaw Skill Name: diagforge-bootstrap Version: 0.1.1 The skill 'diagforge-bootstrap' acts as a downloader and executor, instructing the agent to clone an external GitHub repository (https://github.com/qweadzchn/DiagForge) and run multiple Python scripts (e.g., 'Setup\run_draw_job.py') from the downloaded content. While this behavior is aligned with the stated purpose of onboarding, the instruction to execute unverified remote code while requiring a sensitive environment variable (VISIO_BRIDGE_TOKEN) presents a significant supply chain and remote code execution (RCE) risk. These high-risk capabilities are documented in SKILL.md.
Capability Assessment
Purpose & Capability
Name/description say this skill bootstraps an agent into the DiagForge repo; it requires git and python which are exactly what you need to clone and run the repo's smoke-test scripts. Asking for a Visio bridge token is plausible given the Visio-based workflow described.
Instruction Scope
SKILL.md stays on-task (clone repo, read specific docs, run the canonical smoke-test commands). It does instruct running repository Python scripts (Setup/*). Those scripts will run arbitrary Python code from the cloned repo, so inspect them before execution. The instructions do not themselves instruct reading unrelated local files or exfiltrating data.
Install Mechanism
Instruction-only skill with no install spec and no code files included in the package—no downloads or archive extraction by the skill itself (lowest install risk).
Credentials
The only required env var is VISIO_BRIDGE_TOKEN which is plausible for a Visio bridge, but SKILL.md never documents how or when the token is used. This is not necessarily malicious, but you should confirm the token's scope and why it's required before providing it.
Persistence & Privilege
The skill does not request always-on presence and uses normal agent invocation. It does not modify other skills or system-wide settings as presented.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install diagforge-visio-user
  3. After installation, invoke the skill by name or use /diagforge-visio-user
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.1.1
No code changes in this release. SKILL.md has been expanded for clarity and onboarding guidance. - Added an overview of DiagForge’s workflow and goals. - Clarified what this skill can do and typical outcomes for new agents. - Added scenarios for when to use this skill. - Minor rewording for easier onboarding and improved context. - No technical or behavioral changes to the skill itself.
v0.1.0
diagforge-bootstrap 1.0.0 — initial release - Introduces a lightweight onboarding skill for the DiagForge GitHub repository. - Guides users to clone the repo, read key documents, and run the canonical cold-start smoke test. - Outlines the correct execution flow and project structure for new agents. - Clarifies what the skill does and does not include. - Provides recommended workflow and routing rules for issue management.
Metadata
Slug diagforge-visio-user
Version 0.1.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is DiagForge Bootstrap?

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 121 downloads so far.

How do I install DiagForge Bootstrap?

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

Is DiagForge Bootstrap free?

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

Which platforms does DiagForge Bootstrap support?

DiagForge Bootstrap is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created DiagForge Bootstrap?

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

💬 Comments