sprint-plan
Installation
SKILL.md
Phase 0: Parse Arguments
Extract the mode argument (new, update, or status) and resolve the review mode (once, store for all gate spawns this run):
- If
--review [full|lean|solo]was passed → use that - Else read
production/review-mode.txt→ use that value - Else → default to
lean
See .claude/docs/director-gates.md for the full check pattern.
Review mode check (before gates run):
- Read
production/review-mode.txtif it exists. Use that mode. - If the file doesn't exist and this is a
newsprint: useAskUserQuestion:- Prompt: "No review mode is set. Which review depth would you like for this sprint?"
- Options:
[A] full — spawn all director and lead gates[B] lean — skip non-phase-gate director reviews (recommended for most sprints)[C] solo — skip all gate spawning
- After selection: write
production/review-mode.txtwith the chosen mode. Say: "Review mode set to [mode] and saved to production/review-mode.txt."
- If the file doesn't exist and this is NOT a
newsprint (e.g., updating an existing sprint): default toleansilently.