release-changelog
Automates changelog generation from conventional commit history.
Install
mkdir -p .claude/skills/release-changelog && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/12278" && unzip -o skill.zip -d .claude/skills/release-changelog && rm skill.zipInstalls to .claude/skills/release-changelog
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Generate or update CHANGELOG.md entries for roll-parser by summarizing conventional commits since the last release tag. Use when preparing a new alpha/beta/rc/stable release, or when `bun run check:changelog` fails because the version section is missing or stubbed.Key capabilities
- →Generate a new version section in CHANGELOG.md.
- →Summarize git history since the last release tag.
- →Map Conventional Commit types to Keep a Changelog sections.
- →Produce one bullet per commit in present tense, user-facing voice.
- →Group bullets by section: Added, Changed, Deprecated, Removed, Fixed, Security, Documentation.
- →Insert the new section above the most recent version section but below `## [Unreleased]`.
How it works
It runs `git log` to read commit entries, parses Conventional Commit types, and maps them to Keep a Changelog sections. It then formats these into a new section in `CHANGELOG.md`.
Inputs & outputs
When to use release-changelog
- →Preparing release notes
- →Automating changelog updates
- →Filtering commits for public releases
About this skill
Release Changelog
Generate a ## [<version>] - <YYYY-MM-DD> section in CHANGELOG.md by summarizing git history since the last release tag. Follow Keep a Changelog format.
Inputs
- Target version: read from
package.json.versionunless the user specifies one. - Range base:
git describe --tags --abbrev=0on HEAD. For the very first entry on a new major line, use the earliest commit where the rewrite started (ask the user if unclear).
Procedure
- Run
git log <base>..HEAD --pretty='%h %s%n%b' --no-mergesand read every entry. - Honor the
Changelog:opt-out trailer. For each commit, scan the body for a line matching^Changelog:\s*(skip|none|no|false)\s*$(case-insensitive). If present, drop the commit entirely — do not emit a bullet. Log each skipped commit hash + subject in your working output so the maintainer can verify intent. This overrides everything else in the mapping below; even afeat:or breaking change is suppressed when explicitly opted out. - Parse Conventional Commit types and map to Keep a Changelog sections:
feat:→ Addedfix:→ Fixedperf:→ Changed (prefix the bullet with "performance:")refactor:→ Changeddocs:→ Documentationbuild:/ci:/chore:/style:/test:→ skip unless user-visibleBREAKING CHANGE:body or!marker → Changed with a leading BREAKING: label
- For each commit, produce one bullet in present tense, user-facing voice (not "add X" — "X support", "Support for X"). Group bullets by section in this order: Added, Changed, Deprecated, Removed, Fixed, Security, Documentation.
- When a commit title ends in
#NN, render the reference as([#NN](https://github.com/edloidas/roll-parser/issues/NN))at the end of the bullet. - Insert the new section above the most recent version section but below
## [Unreleased]. Keep## [Unreleased]empty (or with pending entries only). - Update the
[Unreleased]link footer to.../compare/v<version>...HEAD. - Append a new link footer:
[<version>]: https://github.com/edloidas/roll-parser/releases/tag/v<version>.
Don'ts
- Don't fabricate commits — every bullet must trace to a real commit in the range.
- Don't skip breaking changes silently, even for alpha.
- Don't re-summarize previously released sections.
- Don't include trivial
chore:/ci:/style:churn unless it changes user-observable behavior.
Verification
bun run check:changelogmust pass for the target version.bun run checkmust still pass (Biome formats markdown tables loosely but heading structure should be intact).- Skim the output yourself — the file will go into the GitHub Release and onto npm.
When not to use it
- →When every bullet cannot trace to a real commit in the range.
- →When trivial `chore:`, `ci:`, or `style:` commits do not change user-observable behavior.
- →When re-summarizing previously released sections.
Limitations
- →It does not fabricate commits.
- →It does not skip breaking changes silently.
- →It does not re-summarize previously released sections.
How it compares
This skill automates the process of generating changelog entries from commit messages, unlike manually writing or updating the `CHANGELOG.md` file.
Compared to similar skills
release-changelog side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| release-changelog (this skill) | 0 | 3mo | Review | Intermediate |
| documentation-review | 11 | 4mo | No flags | Beginner |
| docs-review | 10 | 7mo | No flags | Beginner |
| workthrough | 10 | 8mo | Review | Beginner |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
documentation-review
stacklok
Reviews documentation for factual accuracy
docs-review
metabase
Review documentation changes for compliance with the Metabase writing style guide. Use when reviewing pull requests, files, or diffs containing documentation markdown files.
workthrough
bear2u
Automatically document all development work and code modifications in a structured workthrough format. Use this skill after completing any development task, bug fix, feature implementation, or code refactoring to create comprehensive documentation.
claude-md-improver
anthropics
Audit and improve CLAUDE.md files in repositories. Use when user asks to check, audit, update, improve, or fix CLAUDE.md files. Scans for all CLAUDE.md files, evaluates quality against templates, outputs quality report, then makes targeted updates. Also use when the user mentions "CLAUDE.md maintenance" or "project memory optimization".
anti-slop
rand
Comprehensive toolkit for detecting and eliminating "AI slop" - generic, low-quality AI-generated patterns in natural language, code, and design. Use when reviewing or improving content quality, preventing generic AI patterns, cleaning up existing content, or enforcing quality standards in writing, code, or design work.
agent-md-refactor
davila7
Refactor bloated AGENTS.md, CLAUDE.md, or similar agent instruction files to follow progressive disclosure principles. Splits monolithic files into organized, linked documentation.