/recap — Fresh Start Context
Goal: Orient yourself in <10 seconds. Fast by default, rich on demand.
Usage
code
/recap # Fast: bash script + LLM suggestions /recap --rich # Full: read retro content, detailed analysis
FAST MODE (Default)
Run the script, then add suggestions:
bash
bun ~/.claude/skills/recap/recap.ts
Script outputs formatted data instantly (~0.1s). Then LLM adds:
- •What's next? (2-3 options based on git state + focus)
Total: 1 bash call + LLM analysis = fast + smart
"What's next?" Rules
| If you see... | Suggest... |
|---|---|
| Untracked files | Commit them |
| Focus = completed | Pick from tracks or start fresh |
| Branch ahead | Push or create PR |
RICH MODE (/recap --rich)
Full context with retro/handoff content:
bash
bun ~/.claude/skills/recap/recap-rich.ts
Includes: tracks, retro summary, commits, handoff details.
Hard Rules
- •ONE bash call — never multiple parallel calls (adds latency)
- •Filenames only — don't read retro/handoff content in fast mode
- •Ask, don't suggest — "What next?" not "You should..."
Philosophy: Detect reality. Surface blockers. Be fast.
Version: 6.1 (Bash script + LLM pattern) Updated: 2026-01-14