with one click
tpp
// Load and execute a Technical Project Plan (TPP). Use when the user invokes /tpp or references a _todo/*.md file. Reads the plan, identifies the current phase, and begins work.
// Load and execute a Technical Project Plan (TPP). Use when the user invokes /tpp or references a _todo/*.md file. Reads the plan, identifies the current phase, and begins work.
| name | tpp |
| description | Load and execute a Technical Project Plan (TPP). Use when the user invokes /tpp or references a _todo/*.md file. Reads the plan, identifies the current phase, and begins work. |
| argument-hint | <path/to/_todo/YYYYMMDD-name.md> |
| disable-model-invocation | true |
| allowed-tools | Read, Glob, Grep, Bash, Edit, Write |
docs/TPP-GUIDE.md โ workflow conventions and phase definitionsCLAUDE.md (if it exists in the project root) โ codebase standards$ARGUMENTSIf $ARGUMENTS is blank, look in _todo/ for the most recently modified .md file:
_todo/*.md sorted by modification timeRead the file in full. Extract:
- [ ] checkbox in the "Current phase" sectionFor each item in the TPP's "Required reading" section, read the referenced file using the Read tool. Do not skip this โ these files contain critical context.
| Phase | Action |
|---|---|
| Research & Planning | Explore codebase, read referenced docs, update findings in TPP |
| Write breaking tests | Write failing tests that verify the desired behavior |
| Design alternatives | Generate โฅ2 approaches with pros/cons, add to TPP Solutions section |
| Task breakdown | Break remaining work into specific tasks with verification commands |
| Implementation | Work through tasks in order; update TPP as each is completed |
| Review & Refinement | Review recent changes for correctness, style, DRY opportunities |
| Final Integration | Run full type-check and benchmark; verify nothing regressed |
Tell the user: "Context is getting full โ run /handoff to update the TPP before ending this session." Do not run /handoff automatically.