generate_adr_todo
Generates a TODO.md from architectural decision records by decomposing each ADR into paired test and production tasks, linking to release milestones, and preserving manual edits.
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) |