release-notes
Original:🇺🇸 English
Translated
Generate release notes from commits since last tag
6installs
Sourcebriansunter/arcfetch
Added on
NPX Install
npx skill4agent add briansunter/arcfetch release-notesTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Generate release notes for arcfetch:
- Get the latest tag:
git describe --tags --abbrev=0 - List commits since that tag:
git log <tag>..HEAD --oneline - Categorize by conventional commit type:
- - New features
feat: - - Bug fixes
fix: - - Maintenance
chore: - - Documentation
docs: - - Code improvements
refactor:
- Summarize user-facing changes
- Note: per releaseRules in package.json, breaking changes trigger a minor bump (not major)
- Output a formatted summary suitable for a GitHub release