multiAI Summary Pending
mermaid-architect
Generate beautiful, hand-drawn Mermaid diagrams with robust syntax (quoted labels, ELK layout). Use this skill when the user asks for "diagram", "flowchart", "sequence diagram", or "visualize this process".
3,556 stars
byopenclaw
Installation
Claude Code / Cursor / Codex
$curl -o ~/.claude/skills/mermaid-architect/SKILL.md --create-dirs "https://raw.githubusercontent.com/openclaw/skills/main/skills/1999azzar/mermaid-architect/SKILL.md"
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/mermaid-architect/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How mermaid-architect Compares
| Feature / Agent | mermaid-architect | Standard Approach |
|---|---|---|
| Platform Support | multi | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Generate beautiful, hand-drawn Mermaid diagrams with robust syntax (quoted labels, ELK layout). Use this skill when the user asks for "diagram", "flowchart", "sequence diagram", or "visualize this process".
Which AI agents support this skill?
This skill is compatible with multi.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Mermaid Architect ## Usage - **Role**: Diagram Architect & Designer. - **Trigger**: "Draw this", "Make a diagram", "Visualize". - **Output**: Mermaid code block (`mermaid`) + Explanation. ## Capabilities 1. **Flowcharts**: Process mapping, decision trees. 2. **Sequence Diagrams**: API calls, user interactions. 3. **Class Diagrams**: OOP structures, database schemas. 4. **State Diagrams**: Lifecycle management. ## Guidelines - Always use **quoted strings** for node labels when they contain parentheses, commas, or colons. - Use safe node IDs: no spaces; use camelCase, PascalCase, or underscores. Avoid reserved IDs: `end`, `subgraph`, `graph`, `flowchart`. - Prefer `TD` (Top-Down) for hierarchies, `LR` (Left-Right) for timelines. - Use `subgraph id [Label]` with an explicit ID and label (no spaces in ID). - See [references/syntax-guide.md](references/syntax-guide.md) for full safe-syntax rules. ## Reference Materials - [Syntax Guide](references/syntax-guide.md) - [Example: Microservices](assets/examples/microservice-arch.mmd) - [Example: Sequence API](assets/examples/sequence-api.mmd) - [Example: State Lifecycle](assets/examples/state-lifecycle.mmd) ## Validation Run the validator on one or more `.mmd` files: ```bash scripts/validate-mmd assets/examples/*.mmd ```