borghei/changelog-generator
> Generate changelogs and release notes from Conventional Commits with semver bump detection, Keep a Changelog formatting, and monorepo scopes. Use when preparing releases, enforcing commit standards, or automating release notes.
npx skills add https://github.com/borghei/Claude-Skills --skill changelog-generator
Generate consistent, auditable changelogs and release notes from Conventional Commits. Parses commit messages, detects semantic version bumps (major/minor/patch), renders Keep a Changelog sections, supports monorepo scoped changelogs, integrates with CI for automated release notes, and enforces commit format with linting. Separates commit parsing, bump logic, and rendering so teams can automate releases without losing editorial control.
changelog, release notes, conventional commits, semantic versioning, semver, Keep a Changelog, commit linting, release automation, monorepo changelog
! and BREAKING CHANGE:.Before generating the changelog, confirm these inputs. If any is unknown or vague, ASK — do not assume:
changelog_formatter.py --format)--version and scoped filtering)Stop rule: ask only the 2-3 that most change the output. If the user says "just draft it," proceed and list your assumptions at the top of the artifact.
| Tool | Purpose | Command |
|------|---------|---------|
| commit_parser.py | Parse git log (with ---COMMIT_END--- delimiters) into structured changelog entries | git log --pretty=format:'%H%n%s%n%b%n---COMMIT_END---' --no-merges \| python scripts/commit_parser.py --json |
| breaking_change_detector.py | Scan commit messages/diffs for breaking-change indicators | python scripts/breaking_change_detector.py -f gitlog.txt --severity high |
| changelog_formatter.py | Format parsed commits into Keep a Changelog or GitHub markdown | python scripts/changelog_formatter.py -f parsed.json --version 1.4.0 --format keepachangelog |
Load the reference that matches the task — keep this file lean and pull detail on demand:
This skill covers:
This skill does NOT cover:
engineering/ci-cd-pipeline-designengineering/git-workflow-automationstandards/git/git-workflow-standards.md| Skill | Integration | Data Flow |
|-------|-------------|-----------|
| engineering/ci-cd-pipeline-design | Changelog generation runs as a CI stage before release publishing | Parsed commits and rendered changelog feed into the release pipeline as artifacts |
| engineering/git-workflow-automation | Commit linting hooks enforce format before commits reach the changelog generator | Pre-commit validation ensures only parseable commits enter the git history |
| engineering/code-review-automation | PR checks verify commit messages conform to Conventional Commits before merge | Linting results gate PR approval, preventing unparseable commits from reaching main |
| engineering/api-versioning-strategy | Breaking change detection aligns API version bumps with changelog major releases | BREAKING CHANGE commits trigger both changelog entries and API version increments |
| project-management/release-management | Release planning uses generated changelogs for stakeholder communication | Rendered release notes flow into release checklists and stakeholder announcements |
| standards/git/git-workflow-standards.md | Commit format standards define the grammar this skill parses | Standard definitions are the source of truth for the commit regex pattern |
Take borghei/changelog-generator from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.