mermaid-diagrams
softaworks/agent-toolkit
Create professional software diagrams from text using Mermaid syntax.
What is mermaid-diagrams?
Mermaid Diagrams enables you to create version-controllable, text-based software visualizations including class diagrams, sequence diagrams, flowcharts, ERDs, C4 architecture diagrams, and more. Use it when you need to visualize system architecture, database schemas, application flows, or document code structure.
- Generate class diagrams for domain modeling and OOP design
- Create sequence diagrams for API flows and system interactions
- Build flowcharts for processes, algorithms, and user journeys
- Design entity relationship diagrams for database schemas
- Produce C4 architecture diagrams at multiple abstraction levels
- Support state diagrams, git graphs, Gantt charts, and data visualizations
How to install mermaid-diagrams
npx skills add https://github.com/softaworks/agent-toolkit --skill mermaid-diagramsHow to use mermaid-diagrams
- 1.Identify the diagram type that matches your need (class, sequence, flowchart, ERD, C4, etc.)
- 2.Write the diagram definition starting with the diagram type declaration
- 3.Use meaningful names and add comments with %% for clarity
- 4.Render the diagram in GitHub, VS Code, or Mermaid Live Editor
- 5.Export to PNG/SVG if needed using Mermaid CLI or the online editor
- 6.Store .mmd files alongside code for version control and easy updates
Use cases
- Document domain-driven design with class diagrams showing entities and relationships
- Visualize API request/response flows and authentication sequences
- Map user journeys and business processes with flowcharts
- Design database schemas with entity relationship diagrams
- Plan system architecture using C4 context, container, and component diagrams
- Software architects designing system structure
- Backend developers documenting APIs and data flows
- Database designers planning schemas
- Team leads onboarding new members
- Technical writers creating living documentation
mermaid-diagrams FAQ
Use sequence diagrams for temporal message flows between participants, or C4 container diagrams for static system structure. Sequence diagrams are best for API interactions and method call sequences; C4 is better for overall architecture.
Yes. Mermaid has native support in GitHub, GitLab, VS Code, Notion, Obsidian, and Confluence. You can also export diagrams to PNG/SVG using Mermaid Live Editor or the CLI.
Split complex diagrams into multiple focused views, each showing one concept. Use comments to explain relationships, and start simple then add details incrementally.
Avoid curly braces {} in comments and be careful with special characters. Misspellings break diagrams silently. Validate syntax in Mermaid Live Editor if you encounter rendering issues.
Yes. Use frontmatter configuration to set themes (default, forest, dark, neutral, base), layout options (dagre, elk), and look styles (classic, handDrawn). You can also customize colors and other theme variables.
Full instructions (SKILL.md)
Source of truth, from softaworks/agent-toolkit.
name: mermaid-diagrams description: Comprehensive guide for creating software diagrams using Mermaid syntax. Use when users need to create, visualize, or document software through diagrams including class diagrams (domain modeling, object-oriented design), sequence diagrams (application flows, API interactions, code execution), flowcharts (processes, algorithms, user journeys), entity relationship diagrams (database schemas), C4 architecture diagrams (system context, containers, components), state diagrams, git graphs, pie charts, gantt charts, or any other diagram type. Triggers include requests to "diagram", "visualize", "model", "map out", "show the flow", or when explaining system architecture, database design, code structure, or user/application flows.
Mermaid Diagramming
Create professional software diagrams using Mermaid's text-based syntax. Mermaid renders diagrams from simple text definitions, making diagrams version-controllable, easy to update, and maintainable alongside code.
Core Syntax Structure
All Mermaid diagrams follow this pattern:
diagramType
definition content
Key principles:
- First line declares diagram type (e.g.,
classDiagram,sequenceDiagram,flowchart) - Use
%%for comments - Line breaks and indentation improve readability but aren't required
- Unknown words break diagrams; parameters fail silently
Diagram Type Selection Guide
Choose the right diagram type:
-
Class Diagrams - Domain modeling, OOP design, entity relationships
- Domain-driven design documentation
- Object-oriented class structures
- Entity relationships and dependencies
-
Sequence Diagrams - Temporal interactions, message flows
- API request/response flows
- User authentication flows
- System component interactions
- Method call sequences
-
Flowcharts - Processes, algorithms, decision trees
- User journeys and workflows
- Business processes
- Algorithm logic
- Deployment pipelines
-
Entity Relationship Diagrams (ERD) - Database schemas
- Table relationships
- Data modeling
- Schema design
-
C4 Diagrams - Software architecture at multiple levels
- System Context (systems and users)
- Container (applications, databases, services)
- Component (internal structure)
- Code (class/interface level)
-
State Diagrams - State machines, lifecycle states
-
Git Graphs - Version control branching strategies
-
Gantt Charts - Project timelines, scheduling
-
Pie/Bar Charts - Data visualization
Quick Start Examples
Class Diagram (Domain Model)
classDiagram
Title -- Genre
Title *-- Season
Title *-- Review
User --> Review : creates
class Title {
+string name
+int releaseYear
+play()
}
class Genre {
+string name
+getTopTitles()
}
Sequence Diagram (API Flow)
sequenceDiagram
participant User
participant API
participant Database
User->>API: POST /login
API->>Database: Query credentials
Database-->>API: Return user data
alt Valid credentials
API-->>User: 200 OK + JWT token
else Invalid credentials
API-->>User: 401 Unauthorized
end
Flowchart (User Journey)
flowchart TD
Start([User visits site]) --> Auth{Authenticated?}
Auth -->|No| Login[Show login page]
Auth -->|Yes| Dashboard[Show dashboard]
Login --> Creds[Enter credentials]
Creds --> Validate{Valid?}
Validate -->|Yes| Dashboard
Validate -->|No| Error[Show error]
Error --> Login
ERD (Database Schema)
erDiagram
USER ||--o{ ORDER : places
ORDER ||--|{ LINE_ITEM : contains
PRODUCT ||--o{ LINE_ITEM : includes
USER {
int id PK
string email UK
string name
datetime created_at
}
ORDER {
int id PK
int user_id FK
decimal total
datetime created_at
}
Detailed References
For in-depth guidance on specific diagram types, see:
- references/class-diagrams.md - Domain modeling, relationships (association, composition, aggregation, inheritance), multiplicity, methods/properties
- references/sequence-diagrams.md - Actors, participants, messages (sync/async), activations, loops, alt/opt/par blocks, notes
- references/flowcharts.md - Node shapes, connections, decision logic, subgraphs, styling
- references/erd-diagrams.md - Entities, relationships, cardinality, keys, attributes
- references/c4-diagrams.md - System context, container, component diagrams, boundaries
- references/architecture-diagrams.md - Cloud services, infrastructure, CI/CD deployments
- references/advanced-features.md - Themes, styling, configuration, layout options
Best Practices
- Start Simple - Begin with core entities/components, add details incrementally
- Use Meaningful Names - Clear labels make diagrams self-documenting
- Comment Extensively - Use
%%comments to explain complex relationships - Keep Focused - One diagram per concept; split large diagrams into multiple focused views
- Version Control - Store
.mmdfiles alongside code for easy updates - Add Context - Include titles and notes to explain diagram purpose
- Iterate - Refine diagrams as understanding evolves
Configuration and Theming
Configure diagrams using frontmatter:
---
config:
theme: base
themeVariables:
primaryColor: "#ff6b6b"
---
flowchart LR
A --> B
Available themes: default, forest, dark, neutral, base
Layout options:
layout: dagre(default) - Classic balanced layoutlayout: elk- Advanced layout for complex diagrams (requires integration)
Look options:
look: classic- Traditional Mermaid stylelook: handDrawn- Sketch-like appearance
Exporting and Rendering
Native support in:
- GitHub/GitLab - Automatically renders in Markdown
- VS Code - With Markdown Mermaid extension
- Notion, Obsidian, Confluence - Built-in support
Export options:
- Mermaid Live Editor - Online editor with PNG/SVG export
- Mermaid CLI -
npm install -g @mermaid-js/mermaid-clithenmmdc -i input.mmd -o output.png - Docker -
docker run --rm -v $(pwd):/data minlag/mermaid-cli -i /data/input.mmd -o /data/output.png
Common Pitfalls
- Breaking characters - Avoid
{}in comments, use proper escape sequences for special characters - Syntax errors - Misspellings break diagrams; validate syntax in Mermaid Live
- Overcomplexity - Split complex diagrams into multiple focused views
- Missing relationships - Document all important connections between entities
When to Create Diagrams
Always diagram when:
- Starting new projects or features
- Documenting complex systems
- Explaining architecture decisions
- Designing database schemas
- Planning refactoring efforts
- Onboarding new team members
Use diagrams to:
- Align stakeholders on technical decisions
- Document domain models collaboratively
- Visualize data flows and system interactions
- Plan before coding
- Create living documentation that evolves with code
Related skills
More from softaworks/agent-toolkit and the wider catalog.
humanizer
Remove AI-generated writing patterns to make text sound more natural and human.
qa-test-planner
Generate test plans, test cases, regression suites, and bug reports with Figma design validation for QA engineers.
writing-clearly-and-concisely
Apply Strunk's timeless rules to write clearer, stronger prose for humans.
database-schema-designer
Design production-ready SQL and NoSQL database schemas with normalization, indexing, and migration strategies.
skill-judge
Evaluate Agent Skill design quality against specifications and best practices with multi-dimensional scoring.
agent-md-refactor
Refactor bloated agent instruction files into organized, linked documentation following progressive disclosure principles.