← 返回 Skills 市场
zhiningo

drawio-flowchart

作者 zhiningo · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
115
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install drawio-flowchart
功能描述
Generate clean, well-structured draw.io (.drawio) XML flowcharts with proper swimlane containers, text hierarchy, color coding, and orthogonal arrows for wor...
使用说明 (SKILL.md)

draw.io Flowchart Generator

Generate production-ready .drawio XML files that render cleanly in app.diagrams.net.

Quick Start

  1. Understand the user's process/workflow
  2. Plan the hierarchy: stages → sub-stages → nodes
  3. Generate the XML following the mandatory rules below
  4. Save the .drawio file and tell the user how to open it (see Output Delivery)

Mandatory Rules

These are non-negotiable. Every flowchart MUST follow all of them.

Canvas Sizing (Critical)

diagrams.net auto-scales to fit the canvas. A canvas too large = tiny text on screen.

Content complexity pageWidth pageHeight
Simple (≤3 stages, few nodes) 600 1200
Medium (4-5 stages) 800 2800
Complex (6+ stages, nested) 800 3800
  • Never exceed pageWidth=800. Wider canvases get scaled down, making text unreadable.
  • Set dx and dy to match or slightly exceed page dimensions.

Container Structure

Use swimlane containers for every stage/group — never bare mxgraph.basic.rect:

\x3CmxCell id="g1" parent="1" connectable="0"
  style="swimlane;startSize=32;fillColor=#EBF5FF;strokeColor=#2563EB;
         strokeWidth=2;fontSize=16;fontStyle=1;fontColor=#1e40af;
         rounded=0;collapsible=0;"
  value="① Stage Name" vertex="1">
  \x3CmxGeometry x="20" y="60" width="720" height="200" as="geometry" />
\x3C/mxCell>

Key properties:

  • startSize=32 — header height for title
  • rounded=0 — sharp corners (never rounded containers)
  • collapsible=0 — prevent collapse UI
  • connectable="0" — on the cell tag, not in style

Text Hierarchy

Three tiers of text size — no exceptions:

Level fontSize fontStyle Example
Stage title (swimlane) 14-16 1 (bold) ① Skill 上传
Node title (inside box) 13 with \x3Cb> tag bold via HTML 格式验证 ✅
Node body text 12 normal SKILL.md & YAML 合法

Use inline HTML for mixed sizes within a single cell:

value="<b style="font-size:13px">Title</b><br><br>Body text line 1<br>Body text line 2"

Alignment

  • All text: align=center — no exceptions for node content
  • Stage titles use swimlane's built-in left-aligned bold header (this is fine)
  • Nodes within a container: distribute evenly across the container width
    • 2 nodes: left half + right half
    • 3 nodes: thirds

Arrows

Arrows must be clean and orthogonal. No diagonal lines, no crossing, no spaghetti.

Between stages (main flow)

\x3CmxCell id="ea_1to2" parent="1" source="g1" target="g2" edge="1"
  style="edgeStyle=orthogonalEdgeStyle;strokeWidth=3;strokeColor=#2563EB;
         fontColor=#2563EB;fontSize=12;fontStyle=1;"
  value="Label text">
  • strokeWidth=3, blue (#2563EB), bold label

Within a container (internal flow)

\x3CmxCell id="e30" parent="g2" source="30" target="31" edge="1"
  style="edgeStyle=orthogonalEdgeStyle;strokeWidth=2;strokeColor=#82b366;">
  • strokeWidth=2, color matches container theme

Fan-out pattern (one source → multiple targets)

Use explicit entry points to prevent crossing:

\x3C!-- Left target: entryX=0.25 -->
style="...entryX=0.25;entryY=0;exitX=0.5;exitY=1;"
\x3C!-- Center target: entryX=0.5 -->
style="...entryX=0.5;entryY=0;exitX=0.5;exitY=1;"
\x3C!-- Right target: entryX=0.75 -->
style="...entryX=0.75;entryY=0;exitX=0.5;exitY=1;"

Return/loop arrows

Use dashed lines routed via explicit waypoints on the left margin:

style="edgeStyle=orthogonalEdgeStyle;dashed=1;strokeColor=#d97706;strokeWidth=2;"

With \x3CArray as="points"> routing along x=5 to avoid crossing content.

Color Palette

Use this consistent 5-stage palette. If fewer stages, use a subset:

Stage fillColor strokeColor fontColor
1 (intro/input) #EBF5FF #2563EB #1e40af
2 (validation) #F0FDF4 #16a34a #047857
3 (evaluation) #FAF5FF #7c3aed #6d28d9
4 (approval) #F0FDF4 #059669 #047857
5 (management) #FFF7ED #ea580c #c2410c

Sub-containers (dashed): use lighter fills (#FEFCE8, #FFF7ED, #FEF2F2) with dashed=1.

Node fills: always #FFFFFF with border color matching the parent stage.

Special nodes:

  • Warning/fail: fillColor=#f8cecc, strokeColor=#b85450
  • Pending/future: fillColor=#fff2cc, strokeColor=#d6b656
  • Decision (rhombus): fillColor=#fff2cc, strokeColor=#d6b656

Spacing Rules

  • Container left margin: x=20, right margin: leave 20px
  • Container width: pageWidth - 40 (e.g., 720 for 800-wide canvas)
  • Vertical gap between stages: 30-40px (including arrow space)
  • Nodes inside container: 10-20px padding from container edges
  • Vertical gap between node bottom and container bottom: ≥15px

"或" (Or) Pattern

When two parallel options exist (e.g., manual vs automatic):

\x3CmxCell id="s1or" parent="s1box"
  style="text;html=1;align=center;fontSize=16;fontStyle=1;fontColor=#999;"
  value="或" vertex="1">

Place centered between the two option boxes, vertically aligned to their midpoint.

Status/Note Bars

For status flow annotations or notes at the bottom of a container:

style="rounded=1;whiteSpace=wrap;html=1;fillColor=#f5f5f5;strokeColor=#999;
       fontSize=11;align=center;fontStyle=2;"

Height: 22-28px, italic, gray — visually subordinate to main content.

XML Structure Template

See references/template.md for the complete XML skeleton.

Output Delivery

交付本地 .drawio 文件,告诉用户打开方式。

步骤

  1. 生成完整的 .drawio XML,必须包含 \x3Cmxfile> 外层包裹
\x3Cmxfile host="app.diagrams.net" type="device">
  \x3Cdiagram id="xxx" name="图表名称">
    \x3CmxGraphModel ...>
      \x3Croot>
        ...
      \x3C/root>
    \x3C/mxGraphModel>
  \x3C/diagram>
\x3C/mxfile>
  1. 将文件保存到 workspace 或用户指定路径,文件名以 .drawio 结尾
  2. 告诉用户文件路径和打开方式:

打开方式(告知用户,选其一即可):

  • 方式一:浏览器打开 https://app.diagrams.net → 点「Open Existing Diagram」→ 选择本地文件
  • 方式二:直接将 .drawio 文件拖拽到已打开的 app.diagrams.net 页面中
  • 方式三:如果安装了 diagrams.net 桌面版(或 VS Code draw.io 插件),直接双击文件打开

Validation Checklist

Before writing the file, verify:

  • pageWidth ≤ 800
  • All containers use swimlane style with rounded=0;collapsible=0
  • All node text has align=center
  • Stage titles use fontSize 14-16 with fontStyle=1
  • Node titles use \x3Cb> tags at fontSize 13
  • Inter-stage arrows: strokeWidth=3, strokeColor=#2563EB
  • Intra-container arrows: strokeWidth=2, matching container color
  • Fan-out arrows use explicit entryX/exitX anchors
  • No XML comments (\x3C!-- -->) in the output — they cause load errors
  • All edge cells have edge="1" attribute and valid source/target
  • Container cells have connectable="0" on the tag (not in style)
  • Nodes inside a container have parent="containerId"
  • No overlapping geometry — manually check x/y/width/height
  • Return arrows route via left margin with explicit waypoints
安全使用建议
This skill is instruction-only and appears coherent for generating draw.io XML files. Before installing, ensure you trust the agent runtime with the ability to write files locally (the skill will save .drawio files). If you plan to clone a repository from a third party as suggested in the README, verify the repo URL and contents. Finally, review the generated XML before uploading it to any external service if you have concerns about sensitive content being included.
功能分析
Type: OpenClaw Skill Name: drawio-flowchart Version: 1.0.0 The skill bundle is designed to help an AI agent generate well-formatted draw.io flowchart XML files. The instructions in SKILL.md and the template in references/template.md focus exclusively on layout, styling, and XML structure to ensure high-quality visual output. There are no indicators of data exfiltration, malicious execution, or harmful prompt injection.
能力评估
Purpose & Capability
Name/description claim: generate draw.io (.drawio) XML flowcharts. What it requests/does: no env vars, no binaries, no installs, and detailed XML-generation rules and templates — all consistent with the claimed purpose.
Instruction Scope
SKILL.md provides precise, scoped instructions to produce XML and save a local .drawio file. It does not instruct reading unrelated system files, requesting secrets, calling external endpoints, or exfiltrating data. The runtime behavior is narrowly focused on XML construction and file output.
Install Mechanism
No install spec or code files execute on the host (instruction-only). The README's optional clone example is a common user-side step and not an automatic installer. No downloads or archives referenced that would write/execute arbitrary code.
Credentials
The skill declares no environment variables, credentials, or config paths. The instructions do not access hidden env vars. Requested permissions are limited to saving a local file, which is proportionate to producing a .drawio output.
Persistence & Privilege
always is false and the skill does not request permanent/system-wide presence. It directs the agent to generate and save a file to the local workspace — a normal and limited action for this purpose.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install drawio-flowchart
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /drawio-flowchart 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of drawio-flowchart: Production-quality, standards-driven .drawio flowchart generator. - Generates structured, visually clean flowchart XML files for diagrams.net (draw.io), following a comprehensive set of design and formatting rules. - Enforces swimlane stage organization, strict hierarchy, text sizing, color palette, and arrow routing for professional results. - Output includes fully packaged .drawio XML with guidance on opening: via app.diagrams.net browser, desktop app, or VS Code extension. - Includes a detailed validation checklist to ensure flowcharts meet usability and compatibility standards.
元数据
Slug drawio-flowchart
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

drawio-flowchart 是什么?

Generate clean, well-structured draw.io (.drawio) XML flowcharts with proper swimlane containers, text hierarchy, color coding, and orthogonal arrows for wor... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 115 次。

如何安装 drawio-flowchart?

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

drawio-flowchart 是免费的吗?

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

drawio-flowchart 支持哪些平台?

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

谁开发了 drawio-flowchart?

由 zhiningo(@zhiningo)开发并维护,当前版本 v1.0.0。

💬 留言讨论