From visual-documentation-skills
Generates HTML flowcharts with SVG nodes for starts/ends, processes, decisions, arrows, and swimlanes to visualize workflows and decision trees.
How this skill is triggered — by the user, by Claude, or both
Slash command
/visual-documentation-skills:flowchart-creatorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create interactive HTML flowcharts and process diagrams.
Create interactive HTML flowcharts and process diagrams.
<!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>
<!-- 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)"/>
[process]-flowchart.htmlKeep layout clean, use consistent spacing (100px between nodes).
4plugins reuse this skill
First indexed Jun 6, 2026
npx claudepluginhub chaosclubco/claude-skills-marketplace-c114beb6 --plugin visual-documentation-skillsCreate SVG-based technical diagrams inside HTML — flowcharts, sequence diagrams, state machines, data-flow diagrams, dependency graphs, request/response timelines. Use whenever the user wants to visualize, illustrate, diagram, or sketch a technical concept, system, or process. Strongly prefer SVG over ASCII art, mermaid blocks, or markdown text for anything spatial or relational. Reach for this whenever an explanation involves arrows, boxes, layers, or sequencing — even when the user doesn't say "diagram".
Generates interactive two-way flow diagrams as self-contained HTML+SVG pages with zoom/pan, traveling dots, and explainer cards. Ideal for system architectures and request/response flows when Mermaid is too rigid.
Generates process flow diagrams, charts, and visualizations using Mermaid. Helps create visual documentation, presentations, and diagrams for process flows.