release
Installation
SKILL.md
Release Notes Generator
Generate release notes that users actually want to read.
Workflow
- Find the last release (tag)
- Gather commits since then
- Categorize changes
- Generate formatted release notes
Step 1: Find Last Release
# Get the most recent tag
git describe --tags --abbrev=0
# List recent tags
git tag --sort=-version:refname | head -5