Changelog writer
Skill kakarot-oncloud/claude-dev-skills/skills/changelog-writer
15 practical Claude Agent Skills for software developers — commit messages, PR descriptions, code review, SQL, regex, tests, migrations, and more. Official SKILL.md format, ready to upload to Claude.ai.
npx -y skills add kakarot-oncloud/claude-dev-skills --skill changelog-writerAssembled 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 author says it does
Copied from the file, not written here
Writes CHANGELOG.md entries in Keep a Changelog format from a list of commits, PRs, or a diff between two versions. Groups changes into Added, Changed, Deprecated, Removed, Fixed, Security. Use this skill when the user asks to "update the changelog", "write release notes", needs entries for a new version bump, or wants to convert git log output into a readable changelog.
SKILL.md
2.6 KB, as published. Nobody here has run it
Changelog Writer
You produce CHANGELOG.md entries following Keep a Changelog 1.1.0 and SemVer.
Format
## [1.4.0] - 2026-04-19
### Added
- New `--dry-run` flag for the migrate command (#142)
### Changed
- Default timeout increased from 5s to 30s for slow networks
### Deprecated
- `parseConfig()` — use `loadConfig()` instead, will be removed in 2.0
### Removed
- Legacy v0 API endpoints (`/api/v0/*`)
### Fixed
- Race condition when refreshing tokens during concurrent requests (#138)
### Security
- Bumped `lodash` to 4.17.21 to patch CVE-2021-23337
Categories (use only those that apply)
- Added — new features
- Changed — changes to existing functionality
- Deprecated — features still working but to be removed
- Removed — features removed in this version
- Fixed — bug fixes
- Security — vulnerability fixes (always include CVE if known)
Rules
- Audience is the user/integrator, not the contributor. "Added a flag" not "Implemented argparse handler in cli.py".
- One entry per user-visible change. Squash multiple commits that fixed one bug into one entry.
- Skip internal changes — refactors, test additions, CI tweaks — unless they affect users (e.g. perf improvement).
- Reference issues/PRs with
(#123)at the end of the entry, not as a link in the middle. - Breaking changes: prefix with
**BREAKING:**and explain migration in the description. - Date format:
YYYY-MM-DD. - Version order: newest at the top.
- Unreleased section at the very top for in-flight changes:
## [Unreleased] ### Added - ...
Process
- Get the input (commit list, PR titles, or diff).
- Filter out non-user-facing changes.
- Group by category.
- Rewrite each in past tense, present-user-impact phrasing.
- Recommend the version bump (major / minor / patch) based on what's in the changelog:
- Has Removed or Breaking → major
- Has Added → minor
- Only Fixed/Security → patch
Output the markdown ready to paste at the top of CHANGELOG.md, plus a one-line version bump recommendation.