Agent skill
changelog-updater
Stars
163
Forks
31
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/development/changelog-updater
SKILL.md
Changelog Updater
Update CHANGELOG.md following Keep a Changelog format.
Structure
markdown
# Changelog
## [Unreleased]
### Added
- New features
### Changed
- Changes to existing functionality
### Deprecated
- Features to be removed
### Removed
- Removed features
### Fixed
- Bug fixes
### Security
- Security fixes
## [X.Y.Z] - YYYY-MM-DD
...
Update Process
- Run
git log v2.1.0..HEAD --onelineto see changes - Categorize each significant commit
- Write user-facing descriptions
- Update version number per semver
- Move entries from [Unreleased] to version section
Version Guidelines
MAJOR (X.0.0): Breaking changes MINOR (X.Y.0): New features, backwards compatible PATCH (X.Y.Z): Bug fixes, backwards compatible
Entry Format
markdown
### Added
- Brief description in user-facing language
- Reference issue: #123
Good Examples
markdown
### Added
- Browser node connection pooling for 60% faster execution
- PostgreSQL async support with connection pooling
### Fixed
- Variable resolution in nested workflows (#234)
- Memory leak in browser resource manager
Didn't find tool you were looking for?