component-common-domai…
Finds duplicate business logic spread across multiple components and suggests consolidation. Use when asking "where is this logic duplicated?", "find common…
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,
$ npx -y skills add tech-leads-club/agent-skills --skill mermaid-studio --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/mermaid-studioContext 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,
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
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.
Every diagram MUST follow these principles. They are not optional — they define the difference between a mediocre diagram and a gold-standard one.
**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.**
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).
Use max 3-4 colors per diagram. Map colors to meaning:
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.
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
| 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`
The secure, validated skill registry for professional AI coding agents. Extend Antigravity, Claude Code, Cursor, Copilot and more with absolute confidence.
Repo: tech-leads-club/agent-skills
Finds duplicate business logic spread across multiple components and suggests consolidation. Use when asking "where is this logic duplicated?", "find common…
Detects misplaced classes and fixes component hierarchy problems — finds code that should belong inside a component but sits at the root level. Use when asking…
Maps architectural components in a codebase and measures their size to identify what should be extracted first. Use when asking "how big is each module?",…
Analyzes coupling between modules using the three-dimensional model (strength, distance, volatility) from "Balancing Coupling in Software Design". Use when…
Creates step-by-step decomposition plans and migration roadmaps for breaking apart monolithic applications. Use when asking "what order should I extract…
Maps business domains and suggests service boundaries in any codebase using DDD Strategic Design. Use when asking "what are the domains in this codebase?",…