release-notes
Installation
SKILL.md
Release Notes Generator
Generate polished release notes by analyzing code changes, PRs, and issues — not just commit messages.
Gathering Context
Step 1: Determine the version range
# Get the two most recent tags
CURRENT_TAG=$(git describe --tags --abbrev=0)
PREVIOUS_TAG=$(git describe --tags --abbrev=0 "$CURRENT_TAG^")
# Or if the user specifies a version:
# CURRENT_TAG="v2.4.0"
# PREVIOUS_TAG=$(git describe --tags --abbrev=0 "$CURRENT_TAG^")