architecture-diagram

Featured

Diagram a system or technical architecture — services, data stores, and how they connect. Use when asked to draw an architecture, show how components fit together, map a system/data flow, or visualize services and dependencies. Produces a ready-to-render Mermaid diagram with grouped subgraphs (renders live, exportable as PNG/SVG) plus a component legend and notes.

AI & Automation 1,228 stars 220 forks Updated today MIT

Install

View on GitHub

Quality Score: 96/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Architecture Diagram Skill "How does the system fit together?" is best answered with a picture. This skill turns a described system into a clean **Mermaid architecture diagram** — clients, services, data stores, and third parties, grouped into logical layers with labelled connections (sync vs async, protocols) — not an undifferentiated blob of boxes. ## Required Inputs Ask for these only if they aren't already provided: - **The components** — services, apps, databases, queues, external APIs. - **How they connect** — who calls whom; sync (HTTP/gRPC) vs async (queue/event); data flow direction. - **Logical groupings** — frontend / backend / data / third-party, or by team/domain. - **Focus** — the whole system or one slice (e.g. just the checkout path). ## Output Format ### [System name] — architecture One line on what the diagram covers and its boundary. ```mermaid flowchart LR subgraph Client Web[Web app] Mobile[Mobile app] end subgraph Backend API[API gateway] Svc[Order service] end subgraph Data DB[(Postgres)] Cache[(Redis)] end Web --> API Mobile --> API API --> Svc Svc --> DB Svc -.async.-> Queue[[Event bus]] Svc --> Cache ``` **Component legend** — one line per non-obvious component (what it is, why it's there). **Notes** — trust boundaries, single points of failure, sync vs async (`-.->` = async), anything to revisit. ## Mermaid Rules (so it renders) - Use `flowc...

Details

Author
mohitagw15856
Repository
mohitagw15856/pm-claude-skills
Created
5 months ago
Last Updated
today
Language
HTML
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category