Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
mhattingpete avatar

Flowchart Creator

  • 570 installs
  • 656 repo stars
  • Updated July 25, 2026
  • mhattingpete/claude-skills-marketplace

flowchart-creator is an agent skill that generates standalone HTML and SVG flowcharts with decision trees and swimlanes for developers documenting workflows and product logic.

About

flowchart-creator is a visual-documentation-plugin skill from mhattingpete/claude-skills-marketplace with 426 installs on skills.sh. It creates interactive HTML process diagrams using SVG nodes for start/end rounded rectangles, blue process boxes, orange decision diamonds, labeled arrows, and optional swimlanes with a fixed color system (#48bb78, #e53e3e, #4299e1, #f59e0b). Agents activate when users request flowcharts, process diagrams, workflow visualizations, or decision trees. The workflow breaks processes into steps, lays out nodes vertically or horizontally with roughly 100px spacing, connects branches, and writes a standalone `[process]-flowchart.html` file. Developers reach for flowchart-creator to turn product specs or architecture decisions into browser-openable visuals without dedicated diagram SaaS tools. Part of the visual-documentation-plugin alongside architecture-diagram-creator and timeline-creator skills. Node taxonomy covers five SVG primitives—start/end, process, decision, arrows, swimlanes—with semantic colors documented for stakeholder-ready HTML exports opened directly in a browser.

  • Converts text descriptions into professional flowcharts and diagrams
  • Works with Mermaid, PlantUML, and SVG output formats
  • Agent-friendly visual artifacts that reduce miscommunication
  • Supports complex decision trees, user journeys, and system flows
  • One-command generation from natural language prompts

Flowchart Creator by the numbers

  • 570 all-time installs (skills.sh)
  • +18 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #700 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/mhattingpete/claude-skills-marketplace --skill flowchart-creator

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs570
repo stars656
Last updatedJuly 25, 2026
Repositorymhattingpete/claude-skills-marketplace

How do you generate HTML flowcharts from process specs?

Turn product specs, user flows, or architecture decisions into clear, visual flowcharts that agents and stakeholders can instantly understand.

Who is it for?

Developers and technical writers who need quick SVG HTML flowcharts from specs without opening a separate diagram editor.

Skip if: Teams requiring collaborative cloud diagram editing, automatic code-to-diagram sync, or non-HTML export formats should skip flowchart-creator.

When should I use this skill?

User asks for a flowchart, process diagram, workflow visualization, or decision tree for a described process.

What you get

Standalone HTML flowchart files with SVG nodes, labeled decision branches, and optional swimlane groupings.

  • Standalone HTML flowchart files
  • SVG process and decision-tree diagrams

By the numbers

  • 426 installs listed on skills.sh for mhattingpete/claude-skills-marketplace/flowchart-creator
  • Defines five SVG node types including optional swimlanes with 100px spacing guidance

Files

SKILL.mdMarkdownGitHub ↗

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).

Related skills

How it compares

Pick flowchart-creator over architecture-diagram skills when the deliverable is a process or decision flow rather than system component topology.

FAQ

What file does flowchart-creator produce?

flowchart-creator writes a standalone HTML file named `[process]-flowchart.html` containing an SVG flowchart with start/end nodes, process boxes, decision diamonds, arrows, and optional swimlanes.

Which node types does flowchart-creator support?

flowchart-creator supports green/red start/end rounded rectangles, blue process rectangles, orange decision diamonds, labeled arrow connectors, and optional swimlane groupings in SVG.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.