Agent skill
dev-swarm-mermaid
Create Mermaid diagrams and convert them to images. Use when needing to visualize flows, architecture, or data structures.
Install this agent skill to your Project
npx add-skill https://github.com/X-School-Academy/ai-dev-swarm/tree/main/dev-swarm/skills/dev-swarm-mermaid
SKILL.md
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
dev-swarm-nodejsskill if needed).
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
.mmdextension (e.g.,diagram.mmd) containing the Mermaid diagram definition.Example
diagram.mmd:mermaidflowchart TD A[Idea] --> B[AI Agent] B --> C[Design] C --> D[Code] D --> E[Test] E --> F[Deploy] -
Generate Image: Use
pnpm dlxto run the Mermaid CLI and convert the.mmdfile to an image (SVG recommended for scalability).bashpnpm dlx @mermaid-js/mermaid-cli -i diagram.mmd -o diagram.svgFor PNG output:
bashpnpm dlx @mermaid-js/mermaid-cli -i diagram.mmd -o diagram.png
Common Diagram Types
- Flowchart:
flowchart TD(Top-Down) orLR(Left-Right) - Sequence Diagram:
sequenceDiagram - Class Diagram:
classDiagram - State Diagram:
stateDiagram-v2 - Entity Relationship Diagram:
erDiagram
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
awslabs-aws-api-mcp-server-call-aws
To run an exact AWS CLI command, execute a validated `aws ...` command for direct AWS operations when you already know the precise service and parameters; use instead of suggesting commands.
dart-get-runtime-errors
To read recent runtime errors from a running Dart or Flutter app, fetch runtime errors after connecting to the Dart Tooling Daemon.
dart-set-widget-selection-mode
To enable or disable widget selection mode in a running Flutter app, set selection mode after connecting to the Dart Tooling Daemon.
background-process-stop-process
To stop a managed background task, terminate a running process by ID to shut it down cleanly.
playwright-browser-network-requests
To inspect network activity since page load, list network requests to review API calls and resources.
playwright-browser-console-messages
To read console logs from the current page, retrieve console messages for debugging JavaScript output.
Didn't find tool you were looking for?