Planned changelog audit process
Public
Planned changelog audit process
Agent
Pi
Model
Claude Opus 4.5 (latest)
Started
Jan 18, 7:26 PM
Messages15
Downloads0
Outlined steps to find last release tag and list commits.
PlanSpecified reviewing unreleased changelog sections in packages.
PlanDefined criteria for commit relevance to changelog.
PlanAudit changelog entries for all commits since the last release.
Find the last release tag:
git tag --sort=-version:refname | head -1List all commits since that tag:
git log <tag>..HEAD --onelineRead each package's [Unreleased] section:
For each commit, check:
git show <hash> --stat)Description ([#N](url) by [@user](url))Cross-package duplication rule:
Changes in ai, agent or tui that affect end users should be duplicated to coding-agent changelog, since coding-agent is the user-facing package that depends on them.
Report:
Sections (in order):
### Breaking Changes - API changes requiring migration### Added - New features### Changed - Changes to existing functionality### Fixed - Bug fixes### Removed - Removed featuresAttribution:
Fixed foo ([#123](https://github.com/badlogic/pi-mono/issues/123))Added bar ([#456](https://github.com/badlogic/pi-mono/pull/456) by [@user](https://github.com/user))git tag --sort=-version:refname | head -1git log <tag>..HEAD --oneline