Changelog
Use when creating or updating the changelog (CHANGELOG.md).From its SKILL.md
npx -y skills add myl7/changelog-skill --skill changelogAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its file declares
Copied from the file, not written here
The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
2.0 KB, 490 tokens by cl100k_base, as published. Nobody here has run it
Follow Keep a Changelog 1.1.0.
Template
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [1.0.0] - 2026-01-01
### Added
- New feature description.
### Changed
- Existing behavior modification.
### Deprecated
- Feature to be removed in future.
### Removed
- Previously deprecated feature now gone.
### Fixed
- Bug fix description.
### Security
- Vulnerability fix description.
[Unreleased]: https://github.com/user/repo/compare/v1.0.0...HEAD
[1.0.0]: https://github.com/user/repo/releases/tag/v1.0.0
Rules
- File name:
CHANGELOG.md. - Versions in reverse chronological order (latest first).
- Dates in ISO 8601 format (
YYYY-MM-DD). - Always keep an
[Unreleased]section at the top for upcoming changes. - Each version and section must be linkable. Add comparison links at the bottom.
- Yanked releases: append
[YANKED]after the date, e.g.,## [1.0.1] - 2026-02-01 [YANKED]. - Only include sections that have entries. Omit empty sections.
- One entry per line. Start with a capital letter and end with a period.
- Write for humans, not machines. Do not dump git log.
Change Types
Use only these six types as ### headings, in this order:
| Type | When |
|---|---|
| Added | New features |
| Changed | Changes in existing functionality |
| Deprecated | Soon-to-be-removed features |
| Removed | Now-removed features |
| Fixed | Bug fixes |
| Security | Vulnerability fixes |
When Releasing
Move entries from [Unreleased] into a new version section with today's date.
Update the comparison links at the bottom of the file.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.