AgentStack
SKILL verified Apache-2.0 Self-run

Mermaid Flowchart

skill-woody-hu-agent-skills-mermaid-flowchart · by Woody-Hu

Technical architecture flowchart creation and editing. When Claude needs to create or modify flowcharts, system diagrams, architecture diagrams, or process flow diagrams using Mermaid syntax

No reviews yet
0 installs
2 views
0.0% view→install

Install

$ agentstack add skill-woody-hu-agent-skills-mermaid-flowchart

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Mermaid Flowchart? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Mermaid Flowchart Creation and Editing

Overview

This skill enables creating and editing technical architecture flowcharts, system diagrams, and process flow diagrams using Mermaid syntax. Mermaid is a powerful diagramming and charting tool that uses text definitions to create diagrams.

When to Use This Skill

Use this skill when you need to:

  • Create system architecture diagrams
  • Design process flow diagrams
  • Visualize data flow
  • Document technical workflows
  • Create decision trees
  • Design organizational structures
  • Map out dependencies between components

Mermaid Flowchart Syntax

Basic Structure

flowchart TD
    A[Start] --> B[Process]
    B --> C{Decision}
    C -->|Yes| D[Action 1]
    C -->|No| E[Action 2]
    D --> F[End]
    E --> F

Direction Options

  • TD - Top to Bottom (default)
  • TB - Top to Bottom (same as TD)
  • BT - Bottom to Top
  • LR - Left to Right
  • RL - Right to Left

Node Shapes

flowchart TD
    A[Square/Rectangle]
    B([Rounded])
    C[(Database)]
    D{{Diamond/Decision}}
    E[/Parallelogram/IO/]
    F[/Trapezoid/Manual Operation/]
    G[\Trapezoid Inverted/Manual Input/]
    H((Circle))
    I((Subroutine))

Node Styling

flowchart TD
    A[Default Style]
    B[Styled NodeCustom Class]
    C[Inline Style]

    classDef defaultStyle fill:#f9f,stroke:#333,stroke-width:2px;

    class B defaultStyle;
    style C fill:#bbf,stroke:#f66,stroke-width:4px,stroke-dasharray: 5 5;

Connections and Labels

flowchart TD
    A --> B
    C -->|With Label| D
    E --> F
    F -.-> G
    H ==> I

Subgraphs

flowchart TD
    subgraph Subgraph1
        A[Node A]
        B[Node B]
    end

    subgraph Subgraph2
        C[Node C]
        D[Node D]
    end

    A --> C
    B --> D

Architecture Diagram Patterns

Microservices Architecture

flowchart TD
    subgraph Client["Client Layer"]
        UI[Web UI]
        Mobile[Mobile App]
    end

    subgraph Gateway["API Gateway"]
        LB[Load Balancer]
        Auth[Authentication]
    end

    subgraph Services["Microservices"]
        S1[Service A]
        S2[Service B]
        S3[Service C]
    end

    subgraph Data["Data Layer"]
        DB1[(Database A)]
        DB2[(Database B)]
        Cache[(Redis Cache)]
    end

    UI --> LB
    Mobile --> LB
    LB --> Auth
    Auth --> S1
    Auth --> S2
    Auth --> S3
    S1 --> DB1
    S2 --> DB2
    S3 --> Cache

Three-Tier Architecture

flowchart TD
    subgraph Presentation["Presentation Layer"]
        Web[Web Application]
        MobileApp[Mobile Application]
    end

    subgraph Business["Business Logic Layer"]
        API[API Server]
        Auth[Authentication Service]
        Business[Business Logic]
    end

    subgraph Data["Data Access Layer"]
        ORM[ORM/DAO]
        Cache[Cache Layer]
    end

    subgraph Storage["Storage Layer"]
        SQL[(SQL Database)]
        NoSQL[(NoSQL Database)]
        File[File Storage]
    end

    Web --> API
    MobileApp --> API
    API --> Auth
    API --> Business
    Business --> ORM
    Business --> Cache
    ORM --> SQL
    ORM --> NoSQL
    Cache --> SQL
    Cache --> NoSQL
    Business --> File

Event-Driven Architecture

flowchart TD
    subgraph Producers["Event Producers"]
        P1[Service A]
        P2[Service B]
    end

    subgraph Broker["Message Broker"]
        Queue1[Queue 1]
        Queue2[Queue 2]
        Topic[Topic]
    end

    subgraph Consumers["Event Consumers"]
        C1[Service C]
        C2[Service D]
        C3[Service E]
    end

    P1 --> Queue1
    P2 --> Queue2
    P1 --> Topic
    P2 --> Topic
    Queue1 --> C1
    Queue2 --> C2
    Topic --> C3

Process Flow Patterns

Decision Tree

flowchart TD
    A[Start] --> B{Condition 1}
    B -->|True| C{Condition 2}
    B -->|False| D{Condition 3}
    C -->|True| E[Action A]
    C -->|False| F[Action B]
    D -->|True| G[Action C]
    D -->|False| H[Action D]
    E --> I[End]
    F --> I
    G --> I
    H --> I

Data Pipeline

flowchart TD
    Source[Data Source] --> Ingest[Data Ingestion]
    Ingest --> Validate{Validation}
    Validate -->|Valid| Transform[Data Transformation]
    Validate -->|Invalid| Error[Error Handling]
    Transform --> Enrich[Data Enrichment]
    Enrich --> Store[Data Storage]
    Error --> Log[Logging]
    Store --> Analytics[Analytics]
    Store --> Reporting[Reporting]

Best Practices

Design Principles

  1. Keep it simple: Avoid overcomplicating diagrams with too many nodes
  2. Use consistent styling: Apply uniform colors and shapes for similar elements
  3. Logical grouping: Use subgraphs to organize related components
  4. Clear labels: Use descriptive, concise labels for nodes and connections
  5. Appropriate direction: Choose TD or LR based on the diagram's natural flow

Color Schemes

Use these recommended color schemes for professional diagrams:

Blue Theme (Technology):

  • Primary: #3498db (Blue)
  • Secondary: #2980b9 (Dark Blue)
  • Accent: #e74c3c (Red)
  • Background: #ecf0f1 (Light Gray)

Green Theme (Success/Process):

  • Primary: #27ae60 (Green)
  • Secondary: #2ecc71 (Light Green)
  • Accent: #f39c12 (Orange)
  • Background: #f5f6fa (Very Light Gray)

Purple Theme (Architecture):

  • Primary: #9b59b6 (Purple)
  • Secondary: #8e44ad (Dark Purple)
  • Accent: #3498db (Blue)
  • Background: #f4ecf7 (Light Purple)

Node Naming Conventions

  • Use descriptive names: UserService instead of Service1
  • Use consistent capitalization: PascalCase or camelCase
  • Include type hints when helpful: UserDatabase[(DB)]
  • Use abbreviations consistently: API not Api

Workflow

  1. Understand requirements: Clarify what the diagram should represent
  2. Identify components: List all nodes and their relationships
  3. Choose structure: Select appropriate direction and layout
  4. Draft diagram: Create initial Mermaid code
  5. Apply styling: Add colors, shapes, and labels
  6. Validate: Review for clarity and accuracy
  7. Iterate: Refine based on feedback

Rendering

To render Mermaid diagrams:

  • Use the Mermaid Live Editor: https://mermaid.live
  • Use Mermaid CLI: mmdc -i input.mmd -o output.png
  • Integrate with documentation tools (GitHub, GitLab, Notion, etc.)

Common Issues and Solutions

Diagram Too Complex

  • Break into multiple smaller diagrams
  • Use subgraphs to organize
  • Remove unnecessary detail

Overlapping Nodes

  • Adjust direction (TD vs LR)
  • Increase spacing with custom styles
  • Simplify connections

Poor Readability

  • Use larger fonts
  • Improve color contrast
  • Add more descriptive labels
  • Reduce node count

Dependencies

Required tools:

  • Mermaid CLI: npm install -g @mermaid-js/mermaid-cli
  • Node.js: Required for Mermaid CLI

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.