Git Changelog Generator
/install git-changelog-generator
Git Changelog Generator
Generate structured changelogs from git history. Supports conventional commits, semantic versioning, and multiple output formats. Use when preparing releases, writing release notes, or documenting project history.
Usage
# Generate changelog for latest unreleased changes
python3 scripts/generate_changelog.py
# Generate changelog between two tags
python3 scripts/generate_changelog.py --from v1.2.0 --to v1.3.0
# Generate for last N commits
python3 scripts/generate_changelog.py --last 20
# Generate since a date
python3 scripts/generate_changelog.py --since 2026-04-01
Output Formats
# Markdown (default)
python3 scripts/generate_changelog.py --format markdown
# Keep a Changelog format (keepachangelog.com)
python3 scripts/generate_changelog.py --format keepachangelog
# GitHub Release format
python3 scripts/generate_changelog.py --format github-release
# JSON (for programmatic use)
python3 scripts/generate_changelog.py --format json
How It Works
- Collect — reads git log between specified ranges
- Parse — extracts conventional commit types (feat, fix, refactor, docs, test, chore, perf, ci)
- Categorize — groups changes by type with human-readable headers
- Enrich — adds PR links, issue references, author attribution, breaking change warnings
- Format — outputs in the requested format
Conventional Commit Support
Parses standard prefixes:
feat:→ Featuresfix:→ Bug Fixesrefactor:→ Code Refactoringdocs:→ Documentationtest:→ Testsperf:→ Performanceci:→ CI/CDchore:→ MaintenanceBREAKING CHANGE:→ Breaking Changes (highlighted)
Non-conventional commits are categorized as "Other Changes" with AI-assisted categorization.
Parameters
| Parameter | Description | Default |
|---|---|---|
--from |
Start tag/commit | Last tag |
--to |
End tag/commit | HEAD |
--last |
Last N commits | All since last tag |
--since |
Start date (YYYY-MM-DD) | None |
--format |
Output format | markdown |
--output |
Write to file | stdout |
--repo |
Repository path | Current directory |
--include-authors |
Show commit authors | false |
--include-hashes |
Show commit hashes | false |
--group-by |
Group by type or scope |
type |
AI Enhancement
When used as an agent skill, the AI can:
- Rewrite terse commit messages into human-readable descriptions
- Identify the most impactful changes and highlight them
- Generate a summary paragraph for release announcements
- Detect breaking changes even without conventional commit markers
- Cross-reference with issue trackers for richer context
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install git-changelog-generator - After installation, invoke the skill by name or use
/git-changelog-generator - Provide required inputs per the skill's parameter spec and get structured output
What is Git Changelog Generator?
Generate structured changelogs from git history using conventional commits, with support for multiple formats, AI-enhanced descriptions, and customizable ran... It is an AI Agent Skill for Claude Code / OpenClaw, with 48 downloads so far.
How do I install Git Changelog Generator?
Run "/install git-changelog-generator" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Git Changelog Generator free?
Yes, Git Changelog Generator is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Git Changelog Generator support?
Git Changelog Generator is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Git Changelog Generator?
It is built and maintained by charlie-morrison (@charlie-morrison); the current version is v1.0.0.