AgentSkillsCN

acc-diagram-knowledge

图表知识库。提供 Mermaid 语法、C4 模型、各类图表类型以及技术图表的最佳实践。

SKILL.md
--- frontmatter
name: acc-diagram-knowledge
description: Diagram knowledge base. Provides Mermaid syntax, C4 model, diagram types, and best practices for technical diagrams.

Diagram Knowledge Base

Quick reference for technical diagrams, Mermaid syntax, and C4 model.

Diagram Types Overview

TypeUse CaseWhen to Use
C4 ContextSystem boundariesExternal actors, systems
C4 ContainerDeployable unitsApps, databases, services
C4 ComponentInternal structureClasses, modules in container
SequenceInteractionsRequest flows, protocols
ClassStructureDomain model, relationships
ERDataDatabase schema
FlowchartProcessAlgorithms, decisions
StateLifecycleEntity states, transitions

Mermaid Basics

Flowchart

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

Syntax:

code
flowchart TD|TB|BT|LR|RL
    id[Rectangle]
    id(Rounded)
    id{Diamond}
    id([Stadium])
    id[[Subroutine]]
    id[(Database)]
    id((Circle))

Sequence Diagram

mermaid
sequenceDiagram
    participant C as Client
    participant A as API
    participant D as Database

    C->>A: POST /users
    A->>D: INSERT user
    D-->>A: user_id
    A-->>C: 201 Created

Syntax:

code
->>   Solid arrow (sync)
-->>  Dashed arrow (async/response)
-)    Open arrow
--)   Dashed open arrow
Note right of A: Note text
loop Loop name
    actions
end
alt Condition
    actions
else Other
    actions
end

Class Diagram

mermaid
classDiagram
    class Order {
        -OrderId id
        -OrderStatus status
        +confirm() void
        +cancel() void
    }
    class OrderItem {
        -ProductId productId
        -int quantity
    }
    Order "1" *-- "*" OrderItem : contains

Relationships:

code
<|-- Inheritance
*--  Composition
o--  Aggregation
-->  Association
--   Link
..>  Dependency
..|> Implementation

State Diagram

mermaid
stateDiagram-v2
    [*] --> Pending
    Pending --> Confirmed : confirm()
    Pending --> Cancelled : cancel()
    Confirmed --> Shipped : ship()
    Confirmed --> Cancelled : cancel()
    Shipped --> Delivered : deliver()
    Delivered --> [*]
    Cancelled --> [*]

ER Diagram

mermaid
erDiagram
    USER ||--o{ ORDER : places
    ORDER ||--|{ ORDER_ITEM : contains
    ORDER_ITEM }o--|| PRODUCT : references

    USER {
        uuid id PK
        string email UK
        string name
    }
    ORDER {
        uuid id PK
        uuid user_id FK
        string status
    }

Cardinality:

code
||--|{  One to many
}|--|{  Many to many
||--||  One to one
||--o{  One to zero-or-many

C4 Model

Level 1: Context Diagram

Shows system and external actors.

mermaid
flowchart TB
    subgraph boundary[System Boundary]
        S[("🖥️ E-Commerce System")]
    end

    U[("👤 Customer")]
    PS[("💳 Payment Service")]
    ES[("📧 Email Service")]

    U -->|"Browse, Order"| S
    S -->|"Process payment"| PS
    S -->|"Send notifications"| ES

Level 2: Container Diagram

Shows deployable units.

mermaid
flowchart TB
    subgraph boundary[E-Commerce System]
        WA[("🌐 Web App\nReact")]
        API[("⚙️ API\nPHP/Symfony")]
        DB[("🗄️ Database\nPostgreSQL")]
        CACHE[("💾 Cache\nRedis")]
        MQ[("📬 Queue\nRabbitMQ")]
    end

    WA -->|"REST/JSON"| API
    API -->|"SQL"| DB
    API -->|"Cache"| CACHE
    API -->|"Publish"| MQ

Level 3: Component Diagram

Shows internal structure.

mermaid
flowchart TB
    subgraph api[API Container]
        direction TB
        subgraph presentation[Presentation]
            AC[Action]
            RS[Responder]
        end
        subgraph application[Application]
            UC[UseCase]
            SV[Service]
        end
        subgraph domain[Domain]
            EN[Entity]
            VO[ValueObject]
            RP[Repository Interface]
        end
        subgraph infra[Infrastructure]
            RI[Repository Impl]
            AD[Adapter]
        end
    end

    AC --> UC
    UC --> EN
    UC --> RP
    RI -.-> RP

Best Practices

Diagram Guidelines

PrincipleDescriptionExample
7±2 RuleMax 5-9 elementsAggregate related items
Clear labelsDescriptive names"User Service" not "S1"
Consistent styleSame shapes = same typeRectangles for services
Flow directionTop-down or left-rightPick one per diagram
Context firstStart high-levelC4 Context → Container

Naming Conventions

markdown
✅ Good:
- "Payment Service" (descriptive)
- "PostgreSQL Database" (specific)
- "POST /orders" (action-based)

❌ Bad:
- "Service A" (meaningless)
- "DB" (ambiguous)
- "Process" (vague)

Layout Tips

markdown
# Top-down flow (recommended for hierarchies)
flowchart TD

# Left-right (recommended for timelines)
flowchart LR

# Subgraphs for grouping
subgraph name[Label]
    content
end

# Styling
style id fill:#f9f,stroke:#333
classDef className fill:#f9f
class id1,id2 className

Common Antipatterns

AntipatternProblemFix
SpaghettiToo many crossing linesReorder, use subgraphs
Kitchen sinkEverything in one diagramSplit by level/aspect
Mystery meatCryptic labelsUse full names
OutdatedDoesn't match codeAutomate from code
No legendUnknown symbolsAdd legend/key
Invisible boundariesUnclear scopeAdd subgraphs

Tool Comparison

ToolTypeBest ForProsCons
MermaidText-basedDocumentation-as-codeGit-friendly, embeds in MD, live previewLimited styling, complex layouts hard
PlantUMLText-basedUML diagramsFull UML support, more diagram typesRequires Java, slower rendering
Draw.ioGUIQuick prototypes, business diagramsFree, intuitive, many templatesBinary files, merge conflicts
ExcalidrawGUISketches, whiteboardingHand-drawn style, collaborativeLess precise, limited exports
LucidchartGUIEnterprise, presentationsProfessional output, integrationsPaid, not text-based

Tool Selection Guide

ScenarioRecommended Tool
Code documentation (README, docs/)Mermaid
Strict UML compliance requiredPlantUML
Quick whiteboard sessionExcalidraw
Stakeholder presentationsDraw.io or Lucidchart
CI/CD pipeline diagramsMermaid (auto-generate)
Living documentation (auto-update)Mermaid + code generation

Tool Features Matrix

FeatureMermaidPlantUMLDraw.ioExcalidraw
Version control friendly⚠️ JSON
GitHub/GitLab rendering
No install required
Offline support⚠️
C4 model supportManualManual
Export to PNG/SVG
Real-time collaboration

Diagram Selection Guide

code
What are you documenting?
│
├─ System overview → C4 Context
│
├─ Deployment units → C4 Container
│
├─ Internal structure → C4 Component / Class
│
├─ Data flow
│  ├─ Request/Response → Sequence
│  └─ Data processing → Flowchart
│
├─ Data structure
│  ├─ Domain model → Class
│  └─ Database → ER
│
└─ Behavior
   ├─ State machine → State
   └─ Algorithm → Flowchart

PHP-Specific Diagrams

DDD Layers

mermaid
flowchart TB
    subgraph presentation[Presentation Layer]
        direction LR
        A[Action]
        R[Responder]
    end

    subgraph application[Application Layer]
        direction LR
        UC[UseCase]
        DTO[DTO]
    end

    subgraph domain[Domain Layer]
        direction LR
        E[Entity]
        VO[Value Object]
        DS[Domain Service]
        RI[Repository Interface]
    end

    subgraph infrastructure[Infrastructure Layer]
        direction LR
        RImpl[Repository]
        Adapter[Adapter]
    end

    presentation --> application
    application --> domain
    infrastructure -.-> domain

CQRS Pattern

mermaid
flowchart LR
    subgraph commands[Write Side]
        CMD[Command] --> CH[CommandHandler]
        CH --> AR[Aggregate]
        AR --> EV[Event]
    end

    subgraph queries[Read Side]
        Q[Query] --> QH[QueryHandler]
        QH --> RM[ReadModel]
    end

    EV -.-> RM

References

For detailed information, load these reference files:

  • references/mermaid-syntax.md — Complete Mermaid syntax reference
  • references/c4-model.md — C4 model detailed guide
  • references/sequence-patterns.md — Common sequence diagram patterns
  • references/diagram-tools.md — Tools and automation