Agent skill · Workflow & Productivity

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.

mhattingpetegithub.com/mhattingpeteGitHub ↗
claude-codeApache-2.0
Install
npx skills add mhattingpete/claude-skills-marketplace --skill flowchart-creator --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 5
SKILL.md size: 2 KB
Bundled scripts: none
Path: visual-documentation-plugin/skills/flowchart-creator/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 656
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the 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 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 ```html <!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 ```html <!-- 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" te

What's inside
Steps it walks through
  1. When to Use
  2. Components
  3. HTML Structure
  4. Node Patterns
  5. Workflow
Ships with 4 files
  • assets/templates/base_template.html
  • assets/templates/flowchart_components.html
  • references/design_patterns.md
  • references/svg_library.md
More from claude-skills-marketplace
All skills →
About this skill
What does the flowchart-creator skill do?

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.

How do I install it?

Run `npx skills add mhattingpete/claude-skills-marketplace --skill flowchart-creator --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From mhattingpete/claude-skills-marketplace, a repository with 656 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going