| name | mermaid-visualizer |
| description | Transform text content into professional Mermaid diagrams for presentations and documentation. Use when users ask to visualize concepts, create flowcharts, or make diagrams from text. Supports process flows, system architectures, comparisons, mindmaps, and more with built-in syntax error prevention. |
Mermaid Visualizer
Overview
Convert text content into clean, professional Mermaid diagrams optimized for presentations and documentation. Automatically handles common syntax pitfalls (list syntax conflicts, subgraph naming, spacing issues) to ensure diagrams render correctly in Obsidian, GitHub, and other Mermaid-compatible platforms.
Quick Start
When creating a Mermaid diagram:
- Analyze the content - Identify key concepts, relationships, and flow
- Choose diagram type - Select the most appropriate visualization (see Diagram Types below)
- Select configuration - Determine layout, detail level, and styling
- Generate diagram - Create syntactically correct Mermaid code
- Output in markdown - Wrap in proper code fence with optional explanation
Default assumptions:
- Vertical layout (TB) unless horizontal requested
- Medium detail level (balanced between simplicity and information)
- Professional color scheme with semantic colors
- Obsidian/GitHub compatible syntax
Diagram Types
1. Process Flow (graph TB/LR)
Best for: Workflows, decision trees, sequential processes, AI agent architectures
Use when: Content describes steps, stages, or a sequence of actions
Key features:
- Swimlanes via subgraph for grouping related steps
- Arrow labels for transitions
- Feedback loops and branches
- Color-coded stages
Configuration options:
layout: "vertical" (TB), "horizontal" (LR)
detail: "simple" (core steps only), "standard" (with descriptions), "detailed" (with annotations)
style: "minimal", "professional", "colorful"
2. Circular Flow (graph TD with circular layout)
Best for: Cyclic processes, continuous improvement loops, agent feedback systems
Use when: Content emphasizes iteration, feedback, or circular relationships
3. Comparison Diagram (graph TB with parallel paths)
Best for: Before/after comparisons, A vs B analysis, traditional vs modern systems
Use when: Content contrasts two or more approaches or systems
4. Mindmap
Best for: Hierarchical concepts, knowledge organization, topic breakdowns
Use when: Content is hierarchical with clear parent-child relationships
5. Sequence Diagram
Best for: Interactions between components, API calls, message flows
Use when: Content involves communication between actors/systems over time
6. State Diagram
Best for: System states, status transitions, lifecycle stages
Use when: Content describes states and transitions between them
Critical Syntax Rules
Always follow these rules to prevent parsing errors:
Rule 1: Avoid List Syntax Conflicts
WRONG: [1. Perception] → Triggers "Unsupported markdown: list"
RIGHT: [1.Perception] → Remove space after period
RIGHT: [① Perception] → Use circled numbers
RIGHT: [(1) Perception] → Use parentheses
RIGHT: [Step 1: Perception] → Use "Step" prefix
Rule 2: Subgraph Naming
WRONG: subgraph AI Agent Core → Space in name without quotes
RIGHT: subgraph agent["AI Agent Core"] → Use ID with display name
RIGHT: subgraph agent → Use simple ID only
Rule 3: Node References
WRONG: Title --> AI Agent Core → Reference display name directly
RIGHT: Title --> agent → Reference subgraph ID
Rule 4: Special Characters in Node Text
Use quotes for text with spaces: ["Text with spaces"]
Escape or avoid: quotation marks → use 『』instead
Escape or avoid: parentheses → use 「」instead
Line breaks in circle nodes only: ((Text<br/>Break))
Rule 5: Arrow Types
--> solid arrow
-.-> dashed arrow (for supporting systems, optional paths)
==> thick arrow (for emphasis)
~~~ invisible link (for layout only)
For complete syntax reference and edge cases, see references/syntax-rules.md
Configuration Options
All diagrams accept these parameters:
Layout:
direction: "vertical" (TB), "horizontal" (LR), "right-to-left" (RL), "bottom-to-top" (BT)
aspect: "portrait" (default), "landscape" (wide), "square"
Detail Level:
simple: Core elements only, minimal labels
standard: Balanced detail with key descriptions (default)
detailed: Full annotations, explanations, and metadata
presentation: Optimized for slides (larger text, fewer details)
Style:
minimal: Monochrome, clean lines
professional: Semantic colors, clear hierarchy (default)
colorful: Vibrant colors, high contrast
academic: Formal styling for papers/documentation
Additional Options:
show_legend: true/false - Include color/symbol legend
numbered: true/false - Add sequence numbers to steps
title: string - Add diagram title
Color Scheme Defaults
Standard professional palette:
- Green (#d3f9d8/#2f9e44): Input, perception, start states
- Red (#ffe3e3/#c92a2a): Planning, decision points
- Purple (#e5dbff/#5f3dc4): Processing, reasoning
- Orange (#ffe8cc/#d9480f): Actions, tool usage
- Cyan (#c5f6fa/#0c8599): Output, execution, results
- Yellow (#fff4e6/#e67700): Storage, memory, data
- Pink (#f3d9fa/#862e9c): Learning, optimization
- Blue (#e7f5ff/#1971c2): Metadata, definitions, titles
- Gray (#f8f9fa/#868e96): Neutral elements, traditional systems
Common Patterns
Swimlane Pattern (Grouping)
graph TB
subgraph core["Core Process"]
A --> B --> C
end
subgraph support["Supporting Systems"]
D
E
end
core -.-> support
Feedback Loop Pattern
graph TB
A[Start] --> B[Process]
B --> C[End]
C -.->|Feedback| A
Hub and Spoke Pattern
graph TB
Central[Hub]
A[Spoke 1] --> Central
B[Spoke 2] --> Central
C[Spoke 3] --> Central
Quality Checklist
Before outputting, verify:
References
For detailed syntax rules and troubleshooting, see: