← 返回 Skills 市场
qweadzchn

Agent Visio User

作者 qweadzchn · GitHub ↗ · v0.1.1 · MIT-0
cross-platform ⚠ suspicious
117
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install diagforge-agent-visio-user
功能描述
Bootstrap skill for DiagForge. Use this skill to onboard an agent into the DiagForge GitHub repository, understand the project structure, run the canonical c...
使用说明 (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
安全使用建议
This skill is an instructions-only bootstrap that points an agent at an external GitHub repo and tells the agent to run Python smoke-test scripts from that repo. Before installing or running it: 1) Inspect the referenced repository (especially the Setup/*.py scripts) to see what they do—look for network calls, credential usage, and files they create or modify; 2) Do not expose your real VISIO_BRIDGE_TOKEN until you confirm what service it authenticates and what permissions it needs—use a scoped or temporary token and rotate it after testing; 3) Run the smoke tests in an isolated/sandbox environment (VM or container) so arbitrary repo code cannot access sensitive host resources; 4) Prefer cloning over HTTPS if you cannot guarantee SSH key safety, and avoid running repo scripts as root; 5) Ask the skill author to clarify where VISIO_BRIDGE_TOKEN is used and to add explicit instructions about inspecting repository code before execution. These steps will reduce the risk of accidental credential exposure or executing unexpected code.
功能分析
Type: OpenClaw Skill Name: diagforge-agent-visio-user Version: 0.1.1 The skill (SKILL.md) functions as a bootstrap loader that instructs the agent to clone an external GitHub repository (github.com/qweadzchn/DiagForge) and execute several Python scripts (e.g., prepare_smoke_test.py). While these actions are aligned with the stated purpose of project onboarding, the pattern of downloading and executing remote code is a high-risk capability (RCE) that relies on the integrity of the external source. The skill also requires a sensitive environment variable, VISIO_BRIDGE_TOKEN, which could be a target for exfiltration if the external repository or execution environment were compromised.
能力评估
Purpose & Capability
Name/description ask the agent to clone a GitHub repo and run Python-based smoke tests; requiring git and python is reasonable and proportionate. However, the declared required environment variable (VISIO_BRIDGE_TOKEN) is not referenced anywhere in SKILL.md, which creates an unexplained requirement.
Instruction Scope
SKILL.md instructs cloning the upstream repo and running repository Python scripts (Setup\prepare_smoke_test.py, run_draw_job.py, execute_drawdsl.py). Running code pulled from an external repo can execute arbitrary actions (network calls, file I/O, invoking Visio bridge). The instructions do not tell the agent or user to inspect those scripts first, nor do they show how VISIO_BRIDGE_TOKEN is supplied to the runtime, so the runtime behavior and data usage are not fully scoped.
Install Mechanism
This is an instruction-only skill with no install spec and no code bundled — minimal install risk. It relies on existing git and python, which is expected for its stated workflow.
Credentials
Only one environment variable (VISIO_BRIDGE_TOKEN) is declared. That could be appropriate for a Visio bridge, but SKILL.md never documents where or how it is used. Requesting a token without context (service endpoint, scope, or why it's needed for the smoke test) is disproportionate and unclear. The skill also suggests using SSH git URLs which implicitly requires SSH keys; this is expected but should be documented as a consideration.
Persistence & Privilege
The skill does not request always:true, does not include an install hook, and does not modify other skills or system-wide settings. Autonomous invocation is allowed (default), which is normal for skills — no extra persistence privileges requested.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install diagforge-agent-visio-user
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /diagforge-agent-visio-user 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.1
No user-visible changes in this release. - Version bump only; no file or content changes detected.
元数据
Slug diagforge-agent-visio-user
版本 0.1.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Agent Visio User 是什么?

Bootstrap skill for DiagForge. Use this skill to onboard an agent into the DiagForge GitHub repository, understand the project structure, run the canonical c... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 117 次。

如何安装 Agent Visio User?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install diagforge-agent-visio-user」即可一键安装,无需额外配置。

Agent Visio User 是免费的吗?

是的,Agent Visio User 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Agent Visio User 支持哪些平台?

Agent Visio User 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Agent Visio User?

由 qweadzchn(@qweadzchn)开发并维护,当前版本 v0.1.1。

💬 留言讨论