
Architecture Overview
- Updated April 14, 2026
- egamma/plugins
architecture-overview is a Claude Code skill in the AI & Agent Building category. Analyze a project's codebase and generate an architecture overview with Mermaid diagrams in a single markdown file.
Key points
- architecture-overview
- AI & Agent Building
- AI-coding skill
Architecture Overview by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add egamma/plugins/plugin install architecture-overview@egamma-pluginsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Last updated | April 14, 2026 |
|---|---|
| Repository | egamma/plugins ↗ |
What it does
Analyze a project's codebase and generate an architecture overview with Mermaid diagrams in a single markdown file.
README.md
Architecture Overview
A Claude Code plugin that analyzes a project's codebase and generates a comprehensive architecture overview as a single markdown file with embedded Mermaid diagrams.
What It Does
When invoked, the plugin:
- Explores the codebase to understand the project structure
- Identifies architectural layers (UI, Services, Models, Infrastructure, Helpers)
- Maps dependencies between layers
- Generates
architecture-overview.mdat the project root containing:- A project summary
- A layer overview diagram (top-down dependency graph)
- Per-subsystem class diagrams
- Layer descriptions with key files and dependencies
- Sequence diagrams for 1-3 key data flows
- Validates all Mermaid syntax and visually reviews rendered diagrams
Prerequisites
None. Mermaid diagrams render natively in GitHub, GitLab, VS Code, and most markdown viewers.
For syntax validation and visual review, the plugin uses @mermaid-js/mermaid-cli via npx (no pre-install required).
Installation
/plugin install architecture-overview@egamma-plugins
Usage
Ask Claude to generate an architecture overview:
- "generate an architecture overview"
- "create an architecture diagram"
- "document the system design"
You can optionally specify a focus area:
- "generate an architecture overview of the authentication subsystem"
Plugin Structure
architecture-overview/
├── .claude-plugin/
│ └── plugin.json
├── skills/
│ └── architecture-overview/
│ └── SKILL.md
└── README.md