aggregate-logs
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Generate visual diagrams of codebase structure using Mermaid Chart MCP rendering.
> /plugin marketplace add athola/claude-night-marketHow it fires
How this command gets triggered: by you, by Claude, or both.
/visualizeContext preview
What this command does when you run it.
Generate visual diagrams of codebase structure using Mermaid Chart MCP rendering.
name: visualize description: Generate visual diagrams of codebase structure using Mermaid Chart MCP rendering.
Generate visual diagrams of codebase structure using Mermaid Chart MCP rendering.
`dependency`, `workflow`, or `class` (required)
defaults to project root)
/visualize architecture /visualize data-flow plugins/sanctum /visualize dependency --depth 2 /visualize workflow .github/workflows /visualize class plugins/sanctum/scripts
| 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 | | `call-chain` | `cartograph:call-chain` | flowchart TD | | `communities` | `cartograph:code-communities` | flowchart TD |
1. Parse the diagram type from arguments 2. Invoke the matching skill:
`Skill(cartograph:architecture-diagram)`
`Skill(cartograph:dependency-graph)`
`Skill(cartograph:workflow-diagram)`
`Skill(cartograph:code-communities)` 3. Pass scope argument to the skill 4. Skill handles exploration, Mermaid generation, and MCP rendering
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.
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Analyze skill file complexity metrics and generate modularization recommendations for splitting or progressive loading.
Scaffold new Claude Code skills with brainstorming, TDD methodology, and proper frontmatter and module structure.