Diagram
by @ivangdavila
Generate diagrams from descriptions with Mermaid, PlantUML, or ASCII for architecture, flows, sequences, and data models.
clawhub install diagramπ About This Skill
name: Diagram description: Generate diagrams from descriptions with Mermaid, PlantUML, or ASCII for architecture, flows, sequences, and data models.
Principle
Diagrams should clarify, not complicate. Start simple, add detail only when needed. A 5-box flowchart beats a 50-node sprawl.
When User Describes a System or Flow
1. Identify diagram type β Is this a flow, architecture, sequence, or data model? 2. Choose format β Mermaid (default), PlantUML (complex), ASCII (inline), SVG (custom) 3. Draft minimal version β Core elements only, no decoration 4. Iterate β Add detail based on feedback
Diagram Types
| Type | Use For | Format |
|------|---------|--------|
| Flowchart | Processes, decisions, workflows | Mermaid flowchart |
| Sequence | API calls, interactions, protocols | Mermaid sequenceDiagram |
| Architecture | System components, infrastructure | Mermaid flowchart or C4 |
| ER/Data model | Database schemas, relationships | Mermaid erDiagram |
| Class | Object structure, inheritance | Mermaid classDiagram |
| State | Lifecycles, status transitions | Mermaid stateDiagram-v2 |
| Timeline | Project phases, history | Mermaid timeline |
| Mindmap | Brainstorming, concept mapping | Mermaid mindmap |
Output Methods
| Method | When | |--------|------| | Mermaid code block | User can render (docs, GitHub, Notion) | | Render to PNG/SVG | User needs image file | | ASCII inline | Quick sketch in chat | | HTML + Mermaid.js | Interactive viewing |
Rendering Mermaid to Image
# Using mmdc (mermaid-cli)
npx -y @mermaid-js/mermaid-cli mmdc -i diagram.mmd -o diagram.png -b transparentOr via browser tool
Write HTML with Mermaid, screenshot the rendered diagram
Mermaid Quick Reference
Flowchart:
flowchart LR
A[Start] --> B{Decision}
B -->|Yes| C[Action]
B -->|No| D[End]
Sequence:
sequenceDiagram
User->>API: Request
API->>DB: Query
DB-->>API: Result
API-->>User: Response
ER Diagram:
erDiagram
USER ||--o{ ORDER : places
ORDER ||--|{ ITEM : contains
Style Guidelines
Common Requests
| Request | Interpret As | |---------|--------------| | "Draw my API flow" | Sequence diagram: client β API β services | | "Show the architecture" | Flowchart with subgraphs for components | | "Database schema" | ER diagram with relationships | | "How the auth works" | Sequence or flowchart depending on complexity | | "User journey" | Flowchart with decision points |