changelog:create
Installation
SKILL.md
Create Changelog
Create a new CHANGELOG.md from scratch by analyzing the full git history. Follows Keep a Changelog with Semantic Versioning.
Workflow
Step 1: Gather Git Context
Run these commands in parallel:
git tag --sort=-version:refname # All tags, newest first
git log --oneline --date=short --format="%h %ad %s" # Full commit history
git remote get-url origin 2>/dev/null # Remote URL for version links