Claude-skill-registry dev-swarm-mermaid
Create Mermaid diagrams and convert them to images. Use when needing to visualize flows, architecture, or data structures.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/dev-swarm-mermaid" ~/.claude/skills/majiayu000-claude-skill-registry-dev-swarm-mermaid && rm -rf "$T"
manifest:
skills/data/dev-swarm-mermaid/SKILL.mdsource content
Mermaid Diagram Generation
This skill provides instructions for creating Mermaid diagrams and converting them to SVG or PNG images using the Mermaid CLI (
mmdc).
When to Use This Skill
- User needs to visualize flows, architecture, or data structures
- User asks to create diagrams for documentation
- User wants to convert Mermaid syntax to image files
- User needs flowcharts, sequence diagrams, class diagrams, or ER diagrams
Prerequisites
- Node.js and pnpm must be installed (refer to
skill if needed).dev-swarm-nodejs
Your Roles in This Skill
- Tech Manager (Architect): Design diagram structures to effectively communicate system architecture and data flows. Choose appropriate diagram types for different use cases. Ensure diagrams accurately represent technical concepts and relationships.
- DevOps Engineer: Execute Mermaid CLI commands to generate diagrams. Verify pnpm and Node.js installations. Convert Mermaid files to SVG or PNG formats. Troubleshoot diagram generation issues.
Role Communication
As an expert in your assigned roles, you must announce your actions before performing them using the following format:
As a {Role} [and {Role}, ...], I will {action description}
This communication pattern ensures transparency and allows for human-in-the-loop oversight at key decision points.
Installation
We recommend using
pnpm dlx to execute the Mermaid CLI without a permanent global installation.
Verify
mmdc availability:
pnpm dlx @mermaid-js/mermaid-cli --version
Usage
-
Create a Mermaid file: Create a file with
extension (e.g.,.mmd
) containing the Mermaid diagram definition.diagram.mmdExample
:diagram.mmdflowchart TD A[Idea] --> B[AI Agent] B --> C[Design] C --> D[Code] D --> E[Test] E --> F[Deploy] -
Generate Image: Use
to run the Mermaid CLI and convert thepnpm dlx
file to an image (SVG recommended for scalability)..mmdpnpm dlx @mermaid-js/mermaid-cli -i diagram.mmd -o diagram.svgFor PNG output:
pnpm dlx @mermaid-js/mermaid-cli -i diagram.mmd -o diagram.png
Common Diagram Types
- Flowchart:
(Top-Down) orflowchart TD
(Left-Right)LR - Sequence Diagram:
sequenceDiagram - Class Diagram:
classDiagram - State Diagram:
stateDiagram-v2 - Entity Relationship Diagram:
erDiagram