generate_adr_todo
Decompose ADRs into paired test and production tasks (TDD). Generate TODO.md linking tasks to milestones, preserving manual edits, and moving deprecated ADR tasks to a stale section. Idempotent re-runs avoid duplicates.
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 |
|---|---|---|---|
| adrDirectory | No | Directory containing ADR files (relative to projectPath) | docs/adrs |
| scope | No | Which ADRs to decompose: all, pending (proposed/draft), or accepted only | pending |
| projectPath | No | Project root path (defaults to current working directory) | |
| todoPath | No | Output TODO file (relative to projectPath) | TODO.md |
| phase | No | TDD pairing — "both" emits paired test+production tasks (default), "production" or "test" narrows output | both |
| linkToMilestones | No | Link generated tasks to release milestones (local + GitHub merged) | |
| dryRun | No | Compute changes but do not write TODO.md (preview only) |