Help us improve
Share bugs, ideas, or general feedback.
From code-architect
Generates focused architecture diagrams in Mermaid syntax from codebase components and relationships, with labeled data flows and optional legend. Saves to docs directory; limits to 15 nodes.
npx claudepluginhub rohitg00/awesome-claude-code-toolkit --plugin code-architectHow this command is triggered — by the user, by Claude, or both
Slash command
/code-architect:diagramThe summary Claude sees in its command listing — used to decide when to auto-load this command
Generate architecture diagrams using Mermaid or ASCII art for system visualization. ## Steps 1. Identify the diagram type needed: 2. Gather the components to include from the codebase: 3. Map relationships between components: 4. Generate the diagram in Mermaid syntax. 5. Add labels for all connections describing what data flows. 6. Include a legend if the diagram uses custom notation. 7. Save the diagram to the appropriate docs directory. ## Format ## Rules - Keep diagrams focused on one aspect (do not mix sequence and class diagrams). - Limit to 15 nodes maximum per diagram for r...
/generate-diagramsGenerates Mermaid diagrams including C4 architecture (L0-L3), data flows, sequence diagrams, user journeys, and ERDs from codebase analysis. Supports --type filter.
/diagramCreates Mermaid or ASCII diagrams for flowcharts, sequence diagrams, ERDs, C4 models, mindmaps, architecture, and more from natural language descriptions.
/diagramGenerates Mermaid diagrams from codebase analysis or descriptions. Supports flowcharts, sequences, classes, ER diagrams, graphs, and states. Outputs validated Markdown embeds.
/diagramGenerates C4 architecture diagrams (context, container, component levels) from design documents in Mermaid, PlantUML, or C4 format. Outputs to docs/architecture/diagrams/. Supports --format, --level, --diagram_type options.
/architectureGenerates Mermaid diagrams of your codebase: system overview, API route map, database ER diagram, and data flow sequences. Renders in GitHub.
Share bugs, ideas, or general feedback.
Generate architecture diagrams using Mermaid or ASCII art for system visualization.
graph TD
A[Component] -->|action| B[Component]
B --> C[Database]