mermaid
4
总安装量
4
周安装量
#49469
全站排名
安装命令
npx skills add https://github.com/chacha95/advanced-harness --skill mermaid
Agent 安装分布
opencode
4
gemini-cli
4
antigravity
4
github-copilot
4
codex
4
kimi-cli
4
Skill 文档
Mermaid Diagram Generator
Generate high-quality Mermaid diagram code based on user requirements.
Workflow
- Understand Requirements: Analyze user description to determine the most suitable diagram type
- Read Documentation: Read the corresponding syntax reference for the diagram type
- Generate Code: Generate Mermaid code following the specification
- Apply Styling: Apply appropriate themes and style configurations
Diagram Type Reference
Select the appropriate diagram type and read the corresponding documentation:
| Type | Documentation | Use Cases |
|---|---|---|
| Flowchart | flowchart.md | Processes, decisions, steps |
| Sequence Diagram | sequenceDiagram.md | Interactions, messaging, API calls |
| Class Diagram | classDiagram.md | Class structure, inheritance, associations |
| State Diagram | stateDiagram.md | State machines, state transitions |
| ER Diagram | entityRelationshipDiagram.md | Database design, entity relationships |
| Gantt Chart | gantt.md | Project planning, timelines |
| Pie Chart | pie.md | Proportions, distributions |
| Mindmap | mindmap.md | Hierarchical structures, knowledge graphs |
| Timeline | timeline.md | Historical events, milestones |
| Git Graph | gitgraph.md | Branches, merges, versions |
| Quadrant Chart | quadrantChart.md | Four-quadrant analysis |
| Requirement Diagram | requirementDiagram.md | Requirements traceability |
| C4 Diagram | c4.md | System architecture (C4 model) |
| Sankey Diagram | sankey.md | Flow, conversions |
| XY Chart | xyChart.md | Line charts, bar charts |
| Block Diagram | block.md | System components, modules |
| Packet Diagram | packet.md | Network protocols, data structures |
| Kanban | kanban.md | Task management, workflows |
| Architecture Diagram | architecture.md | System architecture |
| Radar Chart | radar.md | Multi-dimensional comparison |
| Treemap | treemap.md | Hierarchical data visualization |
| User Journey | userJourney.md | User experience flows |
| ZenUML | zenuml.md | Sequence diagrams (code style) |
Configuration & Themes
- Theming – Custom colors and styles
- Directives – Diagram-level configuration
- Layouts – Layout direction and spacing
- Configuration – Global settings
- Math – LaTeX math support
Output Specification
Generated Mermaid code should:
- Be wrapped in “`mermaid code blocks
- Have correct syntax that renders directly
- Have clear structure with proper line breaks and indentation
- Use semantic node naming
- NO COLOR STYLING – Keep diagrams clean and simple without colors
- Use minimal, professional style focusing on clarity
Default Style Guidelines
IMPORTANT: Follow these style rules for all diagrams:
- â NO custom colors – Use default styling only
- â White/transparent background – Clean and professional
- â Minimal nodes – Only essential information
- â Clear labels – Concise text without redundancy
- â Simple structure – Linear flows preferred over complex graphs
Gantt Chart Style (Recommended for timelines and schedules):
- Use
gantttype for project timelines, schedules, roadmaps - Clean section-based organization
- Milestones for key achievements
- No custom colors needed
When generating PNG with mmdc:
# Use professional theme with config
mmdc -i diagram.mmd -o diagram.png -w 1200 -H 600 -b white -c config.json
Professional Theme Config (create as config.json):
Option 1: Clean Business Style (Recommended)
{
"theme": "base",
"themeVariables": {
"primaryColor": "#ffffff",
"primaryTextColor": "#333333",
"primaryBorderColor": "#1976d2",
"lineColor": "#888888",
"secondaryColor": "#f5f5f5",
"tertiaryColor": "#e3f2fd",
"tertiaryBorderColor": "#1976d2",
"tertiaryTextColor": "#1565c0",
"fontFamily": "Inter, Segoe UI, Roboto, sans-serif",
"fontSize": "12px"
},
"flowchart": {
"curve": "cardinal",
"nodeSpacing": 50,
"rankSpacing": 50,
"padding": 20
},
"gantt": {
"titleTopMargin": 25,
"barGap": 4,
"topPadding": 50,
"sidePadding": 75,
"gridLineStartPadding": 10,
"fontSize": 12,
"sectionFontSize": 14
}
}
Option 2: Neutral Print Style (For PDF/Print)
{
"theme": "neutral",
"themeVariables": {
"fontFamily": "Inter, sans-serif",
"fontSize": "12px"
},
"flowchart": {
"curve": "basis",
"nodeSpacing": 50,
"padding": 20
}
}
Advanced Styling with classDef:
%%{init: {'theme':'base', 'themeVariables': {'primaryColor':'#fff','primaryBorderColor':'#1976d2','fontFamily':'Inter'}}}%%
graph LR
A[Input] --> B[Process]
B --> C[Output]
classDef clean fill:#ffffff,stroke:#1976d2,stroke-width:2px,color:#333
classDef highlight fill:#e3f2fd,stroke:#1976d2,stroke-width:2px,color:#1565c0
class A,C clean
class B highlight
This creates modern, polished diagrams with:
- ⨠Professional Neo-inspired look
- ð Optimal spacing and padding
- ð¨ Subtle blue accent (#1976d2)
- ð¤ Modern typography (Inter font)
- ð Clean gantt chart styling
Avoid:
- â Multiple colors (style fill:#color)
- â Complex nested subgraphs
- â Excessive node styling
- â Decorative elements
Example Output
Simple Flowchart (No colors):
flowchart LR
A[Start] --> B[Process]
B --> C[End]
Gantt Chart (Recommended for timelines):
gantt
title Project Timeline
dateFormat YYYY-MM
section Phase 1
Task 1 :2026-02, 2026-03
Task 2 :2026-03, 2026-04
section Phase 2
Task 3 :2026-04, 2026-05
Milestone :milestone, 2026-05, 0d
Simple Process Flow:
graph LR
A[Input] --> B[Process]
B --> C[Output]
User requirements: $ARGUMENTS