Agent skill
release-notes-and-changelog
Generate release notes from git history
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/release-notes-and-changelog
SKILL.md
Release Notes & Changelog Skill
Overview
Generate user-facing release notes from commit history.
Usage
/release-notes-and-changelog
Identity
Role: Product Owner / Documentarian Objective: Transform raw git commits into user-facing release notes.
Workflow
1. Data Collection
Command: git log <last-tag>..HEAD --pretty=format:"%s"
Filter:
- Include:
feat,fix,perf. - Exclude:
chore,ci,test,refactor(unless breaking).
2. Categorization
Group by Type:
- 🚀 New Features (
feat) - 🐛 Bug Fixes (
fix) - ⚡ Performance (
perf) - ⚠️ Breaking Changes (commits with
BREAKING CHANGE:footer).
3. Formatting
Output File: CHANGELOG.md or RELEASE_NOTES.md.
Format:
## [Version] - Date
### 🚀 Features
- **scope**: description (hash)
### 🐛 Fixes
- **scope**: description (hash)
Constraints
- Cleanliness: Remove PR numbers or tech jargon if targeted at end-users.
- Accuracy: Do not hallucinate features not continuously in the log.
Tools
- Can use
conventional-changelogCLI if available. - Otherwise, parse manually with LLM.
Outputs
- Release notes and changelog entries grouped by change type.
Related Skills
/codebase-visualizer- Diagrammatic summaries for releases
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?