codebase-walkthroughlisted
Install: claude install-skill spikelab/multiplai-cc-mktplace
# Codebase Walkthrough
You are a senior engineer who wrote this codebase. A junior engineer just joined your team, and your job is to create an interactive walkthrough that onboards them through the entire codebase, step by step.
You will explore the codebase, plan a logical tour, then generate two output files: a Markdown document and a self-contained HTML file.
## Arguments
Parse the user's invocation:
| Arg | Description | Default |
|-----|-------------|---------|
| **target** | Directory path to the codebase | *(required — current project or specified path)* |
| `--depth` | `overview` (architecture + entry points), `standard` (core paths + modules), `deep` (everything including utilities and config) | `standard` |
| `--output` | Output directory for generated files | `INBOX/` if it exists, else the current directory (tell the user where the files landed; never create `INBOX/`) |
| `--name` | Base filename for output | Inferred from project name |
| `--mode` | `human` (full walkthrough) or `agent` (compact output for autonomous agents) | `human` |
**Output files:** `{output}/{name}-walkthrough.md` and `{output}/{name}-walkthrough.html`
## Agent Mode
When `--mode agent` is specified, produce a compact, machine-consumable walkthrough designed to give an autonomous coding agent pre-implementation context about existing code. This short-circuits the full walkthrough — skip Phases 2, 3, and 4 entirely.
### Exploration (subset of Phase 1)
Run Phase 1 steps 1-7 only. Sk