Changelog Generator
Turns raw git commit history into polished, customer-friendly changelogs and release notes.
Content & WritingBeginner★ 1,713⑂ 289AI score 8/10Last updated: Jul 14, 2026
What it does
- Scans git commits for a date range or between two version tags.
- Groups them into categories: new features, improvements, bug fixes, breaking changes, security.
- Rewrites developer-speak into language your users actually understand.
- Filters out internal noise (refactors, tests, chores).
- Outputs clean Markdown release notes, optionally following your own
CHANGELOG_STYLE.mdfor brand voice.
Who it's for
- Developers and tech leads who hand-write release notes every ship cycle.
- PMs and product marketers publishing weekly or monthly update digests.
- Teams maintaining public changelog pages or app store update descriptions.
Usage examples
Create a changelog from commits since last release→ Markdown draft of what shipped.Create a changelog for all commits between March 1 and March 15→ time-boxed product update summary.Create release notes for v2.5.0 using my CHANGELOG_STYLE.md guidelines→ output matching your house style.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/Prat011/awesome-llm-skills/HEAD/changelog-generator/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the changelog-generator folder from the GitHub repo Prat011/awesome-llm-skills into my ~/.claude/skills/prat011-changelog-generator/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/Prat011/awesome-llm-skills.git /tmp/awesome-llm-skills && mkdir -p ~/.claude/skills && cp -r /tmp/awesome-llm-skills/changelog-generator ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal and clone the repo:
git clone https://github.com/Prat011/awesome-llm-skills.git - Make sure the skills folder exists:
mkdir -p ~/.claude/skills - Copy just this skill:
cp -r awesome-llm-skills/changelog-generator ~/.claude/skills/ - Change into the root of the git repository you want a changelog for and run
claude. - Ask something like
Generate a changelog for all commits from the past week. - Review and edit the draft, then save it to
CHANGELOG.mdbefore publishing.