/visualize
Generate visual diagrams of codebase structure using Mermaid Chart MCP rendering.
$ npx -y skills add athola/claude-night-market --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/visualize
Context preview
What this command does when you run it.
Generate visual diagrams of codebase structure using Mermaid Chart MCP rendering.
Command definition
visualize.mdVisualize Codebase
Generate visual diagrams of codebase structure using Mermaid Chart MCP rendering.
Arguments
- `type` - Diagram type: `architecture`, `data-flow`,
`dependency`, `workflow`, or `class` (required)
- `scope` - Directory path to limit analysis (optional,
defaults to project root)
Usage
/visualize architecture
/visualize data-flow plugins/sanctum
/visualize dependency --depth 2
/visualize workflow .github/workflows
/visualize class plugins/sanctum/scripts
Diagram Types
| Type | Skill | Mermaid Format | |------|-------|----------------| | `architecture` | `cartograph:architecture-diagram` | flowchart TD | | `data-flow` | `cartograph:data-flow` | sequenceDiagram | | `dependency` | `cartograph:dependency-graph` | flowchart LR | | `workflow` | `cartograph:workflow-diagram` | flowchart TD/LR | | `class` | `cartograph:class-diagram` | classDiagram |
Workflow
1. Parse the diagram type from arguments 2. Invoke the matching skill:
- `architecture` invokes
`Skill(cartograph:architecture-diagram)`
- `data-flow` invokes `Skill(cartograph:data-flow)`
- `dependency` invokes
`Skill(cartograph:dependency-graph)`
- `workflow` invokes
`Skill(cartograph:workflow-diagram)`
- `class` invokes `Skill(cartograph:class-diagram)`
3. Pass scope argument to the skill 4. Skill handles exploration, Mermaid generation, and MCP rendering
Error Handling
If no type argument is provided, display this help text. If an invalid type is provided, show the valid options table above.
Read more
Visualize Codebase
Generate visual diagrams of codebase structure using Mermaid Chart MCP rendering.
Arguments
- `type` - Diagram type: `architecture`, `data-flow`,
`dependency`, `workflow`, or `class` (required)
- `scope` - Directory path to limit analysis (optional,
defaults to project root)
Usage
/visualize architecture /visualize data-flow plugins/sanctum /visualize dependency --depth 2 /visualize workflow .github/workflows /visualize class plugins/sanctum/scripts
Diagram Types
| Type | Skill | Mermaid Format | |------|-------|----------------| | `architecture` | `cartograph:architecture-diagram` | flowchart TD | | `data-flow` | `cartograph:data-flow` | sequenceDiagram | | `dependency` | `cartograph:dependency-graph` | flowchart LR | | `workflow` | `cartograph:workflow-diagram` | flowchart TD/LR | | `class` | `cartograph:class-diagram` | classDiagram |
Workflow
1. Parse the diagram type from arguments 2. Invoke the matching skill:
- `architecture` invokes
`Skill(cartograph:architecture-diagram)`
- `data-flow` invokes `Skill(cartograph:data-flow)`
- `dependency` invokes
`Skill(cartograph:dependency-graph)`
- `workflow` invokes
`Skill(cartograph:workflow-diagram)`
- `class` invokes `Skill(cartograph:class-diagram)`
3. Pass scope argument to the skill 4. Skill handles exploration, Mermaid generation, and MCP rendering
Error Handling
If no type argument is provided, display this help text. If an invalid type is provided, show the valid options table above.
A plugin marketplace for Claude Code. Install only the plugins you need to run git workflows, code review, spec-driven development, and autonomous agents from inside your Claude Code session.
Other commands on claude-night-market.
- /aggregate-logs
Generate LEARNINGS.md from skill execution logs.
Open command - /analyze-skill
Analyze skill file complexity metrics and generate modularization recommendations for splitting or progressive loading.
Open command - /bulletproof-skill
Harden skills against rationalization and bypass behaviors
Open command - /context-report
Generate context optimization report for skill directories
Open command - /create-command
Create slash commands with brainstorming and best practices
Open command - /create-hook
Create hooks with brainstorming and security-first design
Open command

