flowchart-creator
Create HTML flowcharts and process diagrams with decision trees, color-coded stages, arrows, and swimlanes. Use when users request flowcharts, process diagrams, workflow visualizations, or decision trees.
适合你,如果需要快速生成可嵌入网页的流程图或泳道图
/ 下载安装
用别的 agent?下载 .zip 解压,把文件夹放进它的技能目录
Claude Code
~/.claude/skills/(项目级 .claude/skills/)Codex CLI
~/.codex/skills/Cursor自动读取上面两处目录
其他工具见其文档的「skills」目录;两个下载是同一份文件,只是名字不同
/ 通过 npx 安装 校验哈希
npx oh-my-skill add mhattingpete/claude-skills-marketplace/flowchart-creator/ 通过 bash 安装
curl -fsSL https://oh-my-skill.com/install.sh | bash -s -- mhattingpete/claude-skills-marketplace/flowchart-creator/ 已经装过?验证本机副本,不用重装
npx oh-my-skill verify mhattingpete/claude-skills-marketplace/flowchart-creator安装目标可用 --agent / --scope 或 --to 明确指定;省略时只会在唯一已存在的 agent 目录上自动选择,零命中或多命中会停止并提示。content_hash 缺失或不一致均拒装。
644GitHub stars
~478最小装载
~478含声明引用
~11.1K文本包总量
镜像托管
怎么用
技能原文 SKILL.md
Flowchart Creator
Create interactive HTML flowcharts and process diagrams.
When to Use
- "Create flowchart for [process]"
- "Generate process flow diagram"
- "Make decision tree for [workflow]"
- "Show workflow visualization"
Components
- Start/End nodes: rounded rectangles (#48bb78 green, #e53e3e red)
- Process boxes: rectangles (#4299e1 blue)
- Decision diamonds: diamonds (#f59e0b orange)
- Arrows: connecting paths with labels
- Swimlanes: grouped sections (optional)
HTML Structure
<!DOCTYPE html>
<html>
<head>
<title>[Process] Flowchart</title>
<style>
body { font-family: system-ui; }
svg { max-width: 100%; }
.start-end { fill: #48bb78; }
.process { fill: #4299e1; }
.decision { fill: #f59e0b; }
</style>
</head>
<body>
<h1>[Process Name] Flowchart</h1>
<svg viewBox="0 0 800 600">
<!-- flowchart nodes and connectors -->
</svg>
</body>
</html>
Node Patterns
<!-- Start/End (rounded rect) --> <rect x="350" y="50" width="100" height="50" rx="25" class="start-end"/> <text x="400" y="80" text-anchor="middle">Start</text> <!-- Process box --> <rect x="350" y="150" width="100" height="60" class="process"/> <text x="400" y="185" text-anchor="middle">Process</text> <!-- Decision diamond --> <path d="M400,250 L450,280 L400,310 L350,280 Z" class="decision"/> <text x="400" y="285" text-anchor="middle">Decision?</text> <!-- Arrow --> <path d="M400,100 L400,150" stroke="#666" stroke-width="2" marker-end="url(#arrow)"/>
Workflow
- Break down process into steps
- Identify decision points
- Layout nodes vertically or horizontally
- Connect with arrows
- Add labels to decision branches
- Write to
[process]-flowchart.html
Keep layout clean, use consistent spacing (100px between nodes).
按 Apache-2.0 许可原样转载,未经改动 · 在 GitHub 查看 →
评论
登录即可评论;带「已验证安装」的,是发布者名下有本店的安装或持有记录。
…