generate_adr_todo
Generate TODO.md from your ADRs by decomposing each into paired test and production tasks, linking them to release milestones. Preserves manual edits and moves tasks from superseded ADRs to a Stale Tasks section.
Instructions
Generate TODO.md from ADRs with comprehensive task breakdown. Decomposes each ADR into paired test+production tasks (TDD), links tasks to release milestones, and preserves manual edits via a bounded HTML-comment section. Re-runs are idempotent; tasks for deleted/superseded ADRs move to a Stale Tasks section.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| phase | No | TDD pairing — "both" emits paired test+production tasks (default), "production" or "test" narrows output | both |
| scope | No | Which ADRs to decompose: all, pending (proposed/draft), or accepted only | pending |
| dryRun | No | Compute changes but do not write TODO.md (preview only) | |
| todoPath | No | Output TODO file (relative to projectPath) | TODO.md |
| projectPath | No | Project root path (defaults to current working directory) | |
| adrDirectory | No | Directory containing ADR files (relative to projectPath) | docs/adrs |
| linkToMilestones | No | Link generated tasks to release milestones (local + GitHub merged) |