Agent skill
generate-changelog
Create changelog from git commits. Use when preparing release notes.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/generate-changelog
SKILL.md
Generate Changelog
Automatically extract commit messages and generate formatted changelog entries for release notes and version history.
When to Use
- Preparing release notes
- Documenting version history
- Creating user-facing change summaries
- Generating development notes
Quick Reference
# Extract commits since last tag
git log v1.0.0..HEAD --pretty=format:"%h - %s (%an) %d"
# Group by conventional commit type
git log --pretty=format:"%h %s" | grep -E "^[a-f0-9]+ (feat|fix|docs|refactor|test):"
# Generate markdown changelog
git log --reverse --pretty=format:"- %s (%h)" > CHANGELOG.md
Workflow
- Extract commits: Get commit messages since last release
- Parse convention: Identify conventional commit types (feat, fix, docs, etc.)
- Categorize changes: Group into sections (Features, Fixes, Documentation, etc.)
- Format output: Create readable markdown or text format
- Add context: Include version number, date, and links
Output Format
Changelog entry:
- Version number and release date
- Features section (new capabilities)
- Fixes section (bug fixes)
- Documentation section (doc updates)
- Breaking changes (if any)
- Contributors
- Version links (GitHub compare)
References
- See
doc-update-blogskill for blog post updates - See git documentation for commit message conventions
- See https://keepachangelog.com/ for changelog format standards
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?