release_tracking
Track releases mapped to ADR decisions. Generate changelogs, manage milestones, compare releases, and assess readiness for greenfield or brownfield projects, writing CHANGELOG.md and creating GitHub Releases/Milestones.
Instructions
Track releases mapped to ADR decisions. Generates changelogs, manages milestones, compares releases, and assesses release readiness. Supports greenfield and brownfield projects. Writes CHANGELOG.md, creates GitHub Releases and Milestones.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| operation | Yes | Operation to perform | |
| projectPath | No | Project root path (defaults to current working directory) | |
| version | No | Release version to track (e.g., v2.3.0) | |
| compareFrom | No | Starting version for comparison | |
| compareTo | No | Ending version for comparison | |
| format | No | Changelog output format | keep-a-changelog |
| includeAdrLinks | No | Include ADR references in changelog | |
| includeCommitHashes | No | Include commit hashes in output | |
| groupByAdr | No | Group changelog entries by ADR | |
| writeToFile | No | Write CHANGELOG.md to repo | |
| includeReadiness | No | Include release readiness score | |
| includeTimeline | No | Include mermaid timeline diagram | |
| milestoneTitle | No | GitHub milestone title (for create_milestone) | |
| milestoneDescription | No | GitHub milestone description | |
| milestoneDueDate | No | Milestone due date (YYYY-MM-DD) | |
| createGithubRelease | No | Create a GitHub Release (requires gh CLI) | |
| syncGithubMilestones | No | Sync milestones to GitHub (requires gh CLI) | |
| updateTodo | No | Update TODO.md with milestone status | |
| localOnly | No | For create_milestone: persist locally instead of calling gh CLI. Useful when gh auth is unavailable. | |
| writeReleasePlan | No | For create_milestone/push_local_milestones: also render local milestones into RELEASE_PLAN.md (bounded section). | |
| releasePlanPath | No | Path to RELEASE_PLAN.md (relative to projectPath). | RELEASE_PLAN.md |