
Release Notes Generator
- 400 installs
- Updated June 24, 2026
- wu529778790/shenzjd-skills
Helps with productivity & planning tasks.
About
release-notes-generator is a Claude Code skill for productivity & planning. It helps solo builders move faster with AI-assisted coding.
- release-notes-generator
- Productivity & Planning
- AI-coding skill
Release Notes Generator by the numbers
- 400 all-time installs (skills.sh)
- +60 installs in the week ending Jul 27, 2026 (Skillselion tracking)
- Ranked #807 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
- Data as of Jul 27, 2026 (Skillselion catalog sync)
npx skills add https://github.com/wu529778790/shenzjd-skills --skill release-notes-generatorAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 400 |
|---|---|
| Last updated | June 24, 2026 |
| Repository | wu529778790/shenzjd-skills ↗ |
What it does
Helps with productivity & planning tasks.
Files
Release Notes Generator
打 tag 时自动对比代码变更,生成标准化的 Release Notes。
Overview
对比上一个 tag 到当前 HEAD 的 git 历史,按 conventional commit 分类(feat/fix/docs/refactor/chore),自动检测 breaking changes,生成标准化的 Release Notes。可选创建 git tag 和 GitHub Release。
When to Use
- User wants to create a tag or release
- User wants to summarize version changes
- User mentions changelog, release notes, or version documentation
- User inputs
/release-notes - User wants to generate a CHANGELOG.md from commit history
- User wants to prepare a release with categorized changes
- User wants to auto-detect breaking changes before release
- User wants to create an annotated git tag with release notes
When NOT to Use:
- User only wants to view git log
- User wants to modify existing release notes
- User wants to generate changelogs for multiple repositories (different tooling)
- User wants to automate release notes in CI/CD (consider semantic-release or release-please)
Core Pattern
Step 1: 检测版本号
获取最新 tag(git describe --tags --abbrev=0),用户指定版本号或根据变更类型建议:有 breaking changes → major,有新功能 → minor,只有 bugfix → patch。
Step 2: 对比变更
PREV_TAG=$(git describe --tags --abbrev=0)
git log ${PREV_TAG}..HEAD --oneline
git diff ${PREV_TAG}..HEAD --statStep 3: 分类变更
| 类别 | 前缀 | 说明 |
|---|---|---|
| 🚀 Features | feat: | 新功能 |
| 🐛 Bug Fixes | fix: | 修复 |
| 📝 Documentation | docs: | 文档 |
| ♻️ Refactor | refactor: | 重构 |
| 🔧 Chores | chore: | 构建/工具/配置 |
| ⚡ Performance | perf: | 性能优化 |
| 🧪 Tests | test: | 测试 |
| 🔒 Security | security: | 安全修复 |
| 💥 Breaking Changes | BREAKING CHANGE 或 ! 后缀 | 破坏性变更 |
Breaking Changes 检测规则: 1. commit 消息包含 BREAKING CHANGE: 或 BREAKING CHANGES: 2. commit 类型后带 !(如 feat!:、fix!:) 3. commit body 中包含破坏性变更说明
读取 commit 消息中的 conventional commit 前缀,没有前缀的根据文件变更推断。
Step 4: 生成 Notes
使用 templates/release-notes.md 模板生成,包含版本号、日期、分类变更列表、diff 链接。
Step 5: 创建 Tag/Release(可选)
询问用户是否创建 annotated tag 和 GitHub Release。用本 skill 生成的 notes 作为 release body:
# 创建 annotated tag
git tag -a "$TAG" -m "$TAG"
# 创建 GitHub Release,使用生成的 release notes
gh release create "$TAG" --title "$TAG" --notes-file release-notes.mdQuick Reference
/release-notes # 交互式,自动建议版本号
/release-notes v1.1.0 # 指定版本号
/release-notes --dry-run # 只生成不创建 tag| 参数 | 说明 | 默认值 |
|---|---|---|
version | 版本号 | 自动建议 |
--dry-run | 只生成不创建 | false |
Common Mistakes
| 错误 | 正确做法 | 原因 |
|---|---|---|
| 只看 commit 数量 | 分析实际代码变更 | commit 数量不代表变更规模 |
| 忽略 breaking changes | 重点标注 💥 | 用户需要知道不兼容变更 |
| 不分类,全部列在一起 | 按 feat/fix/docs 分组 | 可读性差 |
| notes 太长 | 精简为关键变更 + diff 链接 | 用户不需要看每个细节 |
| 没有前缀的 commit 直接忽略 | 根据文件变更推断类型 | 不是所有团队都严格使用 conventional commits |
| 版本号跳过 semver 规则 | 遵循 major.minor.patch 语义 | 随意编号导致依赖管理混乱 |
| 不检查 breaking changes 的 API 影响 | 标注受影响的接口和迁移方式 | 用户升级后才发现破坏性变更 |
| Release Notes 不包含 diff 链接 | 添加 ${PREV_TAG}...${TAG} 对比链接 | 方便用户查看具体代码变更 |
📋 Release Notes Generator
Auto-generate standardized Release Notes by comparing code changes when tagging.
Installation
# npx skills (recommended)
npx skills add wu529778790/shenzjd-skills -s release-notes-generator -y
# Manual (Claude Code)
git clone https://github.com/wu529778790/shenzjd-skills.git
cp -r shenzjd-skills/release-notes-generator ~/.claude/skills/
# Manual (Cursor)
# Copy SKILL.md content to .cursorrules or .cursor/rules/Usage
/release-notes # Auto-suggest version number
/release-notes v1.1.0 # Specify version number
/release-notes --dry-run # Generate only, don't create tag| Parameter | Description | Default |
|---|---|---|
version | Version number (e.g., v1.1.0) | Auto-suggest |
--dry-run | Generate only, don't create tag/release | false |
Output Format
## v1.1.0 (2026-06-03)
### 🚀 Features
- Add docker-build-deploy skill
### 🐛 Bug Fixes
- Fix GitHub Action YAML syntax error
### 📝 Documentation
- Rewrite README
**Full Changelog**: https://github.com/owner/repo/compare/v1.0.0...v1.1.0Version Suggestion
| Change Type | Suggested Version | Example |
|---|---|---|
| Breaking changes | major | v1.0.0 → v2.0.0 |
| New features | minor | v1.0.0 → v1.1.0 |
| Bug fixes only | patch | v1.0.0 → v1.0.1 |
{{VERSION}} ({{DATE}})
{{SUMMARY}}
{{#if features}}
🚀 Features
{{#each features}}
- {{message}}
{{/each}} {{/if}}
{{#if fixes}}
🐛 Bug Fixes
{{#each fixes}}
- {{message}}
{{/each}} {{/if}}
{{#if docs}}
📝 Documentation
{{#each docs}}
- {{message}}
{{/each}} {{/if}}
{{#if refactor}}
♻️ Refactor
{{#each refactor}}
- {{message}}
{{/each}} {{/if}}
{{#if perf}}
⚡ Performance
{{#each perf}}
- {{message}}
{{/each}} {{/if}}
{{#if tests}}
🧪 Tests
{{#each tests}}
- {{message}}
{{/each}} {{/if}}
{{#if security}}
🔒 Security
{{#each security}}
- {{message}}
{{/each}} {{/if}}
{{#if breaking}}
💥 Breaking Changes
{{#each breaking}}
- {{message}}
{{/each}} {{/if}}
{{#if chores}}
🔧 Chores
{{#each chores}}
- {{message}}
{{/each}} {{/if}}
{{#if others}}
📦 Other
{{#each others}}
- {{message}}
{{/each}} {{/if}}
{{#if contributors}}
👥 Contributors
{{#each contributors}}
- @{{username}} {{contribution}}
{{/each}} {{/if}}
Full Changelog: {{COMPARE_URL}}