cli:create-changelog
Installation
SKILL.md
Create Changelog
Generate a clear, human-readable changelog for this CLI project to publish with new npm releases.
Task
When this skill is invoked:
1. Find the latest full release tag
- Run
git fetch --tagsto ensure local tags are up to date with the remote - Use
git tag --sort=-version:refnameto identify the latest tag matching formatvX.Y.Z(e.g., v7.11.2) - Ignore any tags containing '-beta' or other prerelease markers
- This is your comparison baseline
- If an argument is provided (e.g.,
/create-changelog v7.10.0), use that tag instead