flowchart-creator

mhattingpete/claude-skills-marketplace · updated Apr 8, 2026

$npx skills add https://github.com/mhattingpete/claude-skills-marketplace --skill flowchart-creator
0 commentsdiscussion
summary

Create interactive HTML flowcharts and process diagrams.

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

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

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.565 reviews
  • Tariq Diallo· Dec 28, 2024

    Keeps context tight: flowchart-creator is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Layla Srinivasan· Dec 28, 2024

    We added flowchart-creator from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Yusuf Menon· Dec 20, 2024

    Solid pick for teams standardizing on skills: flowchart-creator is focused, and the summary matches what you get after install.

  • Michael Okafor· Dec 16, 2024

    Registry listing for flowchart-creator matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Yusuf Diallo· Dec 4, 2024

    flowchart-creator is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Ren Jain· Nov 23, 2024

    Solid pick for teams standardizing on skills: flowchart-creator is focused, and the summary matches what you get after install.

  • Amina Huang· Nov 19, 2024

    flowchart-creator has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Yusuf Ndlovu· Nov 15, 2024

    flowchart-creator fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Diego Abbas· Nov 11, 2024

    flowchart-creator is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Ren Jackson· Nov 7, 2024

    Useful defaults in flowchart-creator — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

showing 1-10 of 65

1 / 7