Add To Changelog
Commands project-management 195
npx claude-code-templates@latest --command project-management/add-to-changelog Content
Update Changelog
Add a new entry to the project's CHANGELOG.md file: $ARGUMENTS
Usage Examples
/add-to-changelog 1.1.0 added "New markdown to BlockDoc conversion feature"/add-to-changelog 1.0.2 fixed "Bug in HTML renderer causing incorrect output"
Current Changelog State
- Existing changelog: @CHANGELOG.md (if exists)
- Project version files: @package.json or @setup.py (if exists)
Task
Add the specified change entry to CHANGELOG.md:
Arguments:
- Version: First argument (e.g., "1.1.0")
- Change Type: Second argument (added/changed/deprecated/removed/fixed/security)
- Message: Third argument (description of the change)
Requirements:
- Create CHANGELOG.md with standard header if it doesn't exist
- Find or create version section with today's date
- Add entry under appropriate change type section
- Follow Keep a Changelog format and Semantic Versioning
- Update package version files if this is a new version
The changelog should follow Keep a Changelog format.