flowchart-creator

GitHub

根据用户描述生成包含决策树、泳道和颜色编码的交互式HTML流程图。适用于流程可视化、工作流展示及决策分析场景,通过SVG绘制节点与连线并输出为独立HTML文件。

visual-documentation-plugin/skills/flowchart-creator/SKILL.md mhattingpete/claude-skills-marketplace

Trigger Scenarios

创建特定流程的流程图 生成过程流程图 制作工作流的决策树 显示工作流程可视化

Install

npx skills add mhattingpete/claude-skills-marketplace --skill flowchart-creator -g -y
More Options

Non-standard path

npx skills add https://github.com/mhattingpete/claude-skills-marketplace/tree/main/visual-documentation-plugin/skills/flowchart-creator -g -y

Use without installing

npx skills use mhattingpete/claude-skills-marketplace@flowchart-creator

指定 Agent (Claude Code)

npx skills add mhattingpete/claude-skills-marketplace --skill flowchart-creator -a claude-code -g -y

安装 repo 全部 skill

npx skills add mhattingpete/claude-skills-marketplace --all -g -y

预览 repo 内 skill

npx skills add mhattingpete/claude-skills-marketplace --list

SKILL.md

Frontmatter
{
    "name": "flowchart-creator",
    "description": "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."
}

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

  1. Start/End nodes: rounded rectangles (#48bb78 green, #e53e3e red)
  2. Process boxes: rectangles (#4299e1 blue)
  3. Decision diamonds: diamonds (#f59e0b orange)
  4. Arrows: connecting paths with labels
  5. 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

  1. Break down process into steps
  2. Identify decision points
  3. Layout nodes vertically or horizontally
  4. Connect with arrows
  5. Add labels to decision branches
  6. Write to [process]-flowchart.html

Keep layout clean, use consistent spacing (100px between nodes).

Version History

  • b5b34bc Current 2026-08-20 08:47

Same Skill Collection

code-operations-plugin/skills/code-execution/SKILL.md
code-operations-plugin/skills/code-refactor/SKILL.md
code-operations-plugin/skills/code-transfer/SKILL.md
code-operations-plugin/skills/file-operations/SKILL.md
engineering-workflow-plugin/skills/ensemble-solving/SKILL.md
engineering-workflow-plugin/skills/feature-planning/SKILL.md
engineering-workflow-plugin/skills/git-pushing/SKILL.md
engineering-workflow-plugin/skills/review-implementing/SKILL.md
engineering-workflow-plugin/skills/test-fixing/SKILL.md
productivity-skills-plugin/skills/code-auditor/SKILL.md
productivity-skills-plugin/skills/codebase-documenter/SKILL.md
productivity-skills-plugin/skills/conversation-analyzer/SKILL.md
productivity-skills-plugin/skills/project-bootstrapper/SKILL.md
visual-documentation-plugin/skills/architecture-diagram-creator/SKILL.md
visual-documentation-plugin/skills/dashboard-creator/SKILL.md
visual-documentation-plugin/skills/technical-doc-creator/SKILL.md
visual-documentation-plugin/skills/timeline-creator/SKILL.md

Metadata

Files
0
Version
b5b34bc
Hash
84bba5e4
Indexed
2026-08-20 08:47

- 위키
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-24 22:38
浙ICP备14020137号-1 $방문자$