Skip to content
Development
Skill

/mermaid-studio

Expert Mermaid diagram creation, validation, and rendering with dual-engine output (SVG/PNG/ASCII). Supports all 20+ diagram types including C4 architecture, AWS architecture-beta with service icons, flowcharts, sequence, ERD, state, class, mindmap, timeline, git graph, sankey,

From plugin
tech-leads-club-agent-skills
5k88 skills
Install
$ npx -y skills add tech-leads-club/agent-skills --skill mermaid-studio --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/mermaid-studio

Context preview

The summary Claude sees to decide when to auto-load this skill.

Expert Mermaid diagram creation, validation, and rendering with dual-engine output (SVG/PNG/ASCII). Supports all 20+ diagram types including C4 architecture, AWS architecture-beta with service icons, flowcharts, sequence, ERD, state, class, mindmap, timeline, git graph, sankey,

SKILL.md

mermaid-studio.SKILL.md
name: mermaid-studio
description: Expert Mermaid diagram creation, validation, and rendering with dual-engine output (SVG/PNG/ASCII). Supports all 20+ diagram types including C4 architecture, AWS architecture-beta with service icons, flowcharts, sequence, ERD, state, class, mindmap, timeline, git graph, sankey, and more. Features code-to-diagram analysis, batch rendering, 15+ themes, and syntax validation. Use when users ask to create diagrams, visualize architecture, render mermaid files, generate ASCII diagrams, document system flows, model databases, draw AWS infrastructure, analyze code structure, or anything involving "mermaid", "diagram", "flowchart", "architecture diagram", "sequence diagram", "ERD", "C4", "ASCII diagram". Do NOT use for non-Mermaid image generation, data plotting with chart libraries, or general documentation writing.
license: CC-BY-4.0
metadata:
  author: Felipe Rodrigues - github.com/felipfr
  version: 1.0.1

Mermaid Studio

Expert-level Mermaid diagram creation, validation, and multi-format rendering. Creates diagrams from descriptions or code analysis, validates syntax, and renders to SVG, PNG, or ASCII with professional theming.

Golden Rules — Elegant Diagrams by Default

Every diagram MUST follow these principles. They are not optional — they define the difference between a mediocre diagram and a gold-standard one.

Rule 1: Always Use an Init Directive for Professional Styling

**NEVER** create a diagram without an `%%{init}` directive or frontmatter config. The default Mermaid theme produces harsh black lines and generic colors. Always apply a curated palette.

**For general diagrams (flowchart, sequence, state, class, ERD):**

%%{init: {'theme': 'base', 'themeVariables': {
  'primaryColor': '#4f46e5', 'primaryTextColor': '#ffffff',
  'primaryBorderColor': '#3730a3', 'lineColor': '#94a3b8',
  'secondaryColor': '#10b981', 'tertiaryColor': '#f59e0b',
  'background': '#ffffff', 'mainBkg': '#f8fafc',
  'nodeBorder': '#cbd5e1', 'clusterBkg': '#f1f5f9',
  'clusterBorder': '#e2e8f0', 'titleColor': '#1e293b',
  'edgeLabelBackground': '#ffffff', 'textColor': '#334155'
}}}%%

**⚠️ Font Warning:** Do NOT set `fontFamily` in theme variables. The Mermaid default font (`trebuchet ms, verdana, arial, sans-serif`) works everywhere. Setting `system-ui`, `Segoe UI`, or `-apple-system` will render as Times New Roman in headless Chromium (used by `mmdc`).

**For C4 diagrams — see the dedicated C4 styling section below.**

**For architecture-beta diagrams — see the dedicated AWS/Architecture section below.**

Rule 2: Soft Lines, Never Harsh Black

The single biggest visual improvement is using `lineColor: '#94a3b8'` (slate-400) instead of the default black. This creates a modern, breathable diagram. For dark themes, use `lineColor: '#64748b'` (slate-500).

Rule 3: Limit Density — Breathe

  • Maximum 15 nodes per diagram (not 20 — fewer is more elegant)
  • Use `subgraph` or boundaries to create whitespace and visual grouping
  • Prefer LR (left-right) for process flows — it reads more naturally
  • Use invisible links (`A ~~~ B`) to add spacing when the layout is cramped

Rule 4: Meaningful Labels and Consistent Style

  • Node IDs: camelCase (`orderService`, not `s1` or `os`)
  • Labels: short, clear natural language (`[Order Service]`)
  • Arrows: action verbs with protocol info (`"Sends order via gRPC"`)
  • Descriptions: one-line, role-focused (`"Handles order lifecycle"`)

Rule 5: Color Harmony Over Color Variety

Use max 3-4 colors per diagram. Map colors to meaning:

  • **Blue tones** (#4f46e5, #3b82f6) → primary systems, internal services
  • **Green tones** (#10b981, #059669) → success states, data stores
  • **Amber tones** (#f59e0b, #d97706) → external systems, warnings
  • **Slate tones** (#64748b, #94a3b8) → lines, borders, secondary elements
  • **Red tones** (#ef4444) → errors ONLY, never as decoration

Modes of Operation

This skill operates in three modes based on user intent:

| Mode | Trigger | What happens | | ---------- | ------------------------------------------------- | -------------------------- | | **Create** | "draw a diagram of...", "visualize my..." | Generates .mmd code only | | **Render** | "render this mermaid", "convert to SVG/PNG/ASCII" | Renders existing .mmd | | **Full** | "create and render...", ambiguous requests | Create → Validate → Render |

Default to **Full** mode when intent is unclear.

Step 1: Understand the Request

Before writing any Mermaid code, determine:

1. **What to diagram** — system, flow, schema, architecture, code structure? 2. **Which diagram type** — use the Decision Matrix below 3. **Output format** — code only, SVG, PNG, or ASCII? 4. **Theme preference** — ask only if rendering; default to `base` theme with curated palette

Diagram Type Decision Matrix

| User describes... | Diagram Type | Syntax keyword | | ---------------------------------------------- | ------------- | -------------------- | | Process, algorithm, decision tree, workflow | Flowchart | `flowchart TD/LR` | | API calls, message passing, request/response | Sequence | `sequenceDiagram` | | Database schema, table relationships | ERD | `erDiagram` | | OOP classes, domain model, interfaces | Class | `classDiagram` | | State machine, lifecycle, transitions | State | `stateDiagram-v2` | | High-level system overview (C4 Level 1) | C4 Context | `C4Context` | | Applications, databases, services (C4 Level 2) | C4 Container | `C4Container` | | Internal components (C4 Level 3) | C4 Component | `C4Component` | | Request flows with numbered steps | C4 Dynamic | `C4Dynamic` | | Infrastructure, cloud deployment | C4 Deployment | `C4Deployment`

Read more
Ships withtech-leads-club-agent-skills

The secure, validated skill registry for professional AI coding agents. Extend Antigravity, Claude Code, Cursor, Copilot and more with absolute confidence.

Get the whole plugin