changelog
Installation
SKILL.md
Changelog Generator
This skill generates and maintains changelogs following the Keep a Changelog format, integrated with Conventional Commits and Semantic Versioning.
Quick Start
When invoked, analyze git history and generate/update the changelog:
# Get commits since last tag
git log $(git describe --tags --abbrev=0 2>/dev/null || echo "")..HEAD --pretty=format:"%h %s" --no-merges
# Get all tags for reference
git tag --sort=-version:refname | head -10