Changelog summary
Skill skills-lock/example-claude-code-skills/.claude/skills/changelog-summary
Worked example for skil-lock — pin AI Skill behavior; block unapproved drift in CI.
npx -y skills add skills-lock/example-claude-code-skills --skill changelog-summaryAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Summarize recent CHANGELOG.md entries since the last release tag. Uses git + cat. Does not modify files or call external services. Use when you want a paragraph summary of what shipped since the last tag, suitable for pasting into a Slack post or a release email.
SKILL.md
0.9 KB, as published. Nobody here has run it
changelog-summary
Walk the repo's CHANGELOG.md and produce a 2-3 sentence summary of
changes since the last release tag.
Steps
- Find the last release tag:
git describe --tags --abbrev=0
- Read the changelog:
cat CHANGELOG.md
- Identify the section for the most recent release and summarize it in 2-3 sentences. Highlight breaking changes first, then notable features, then bug fixes.
Constraints
- Read-only. Do not push, do not modify files, do not call any network endpoint.
- If
CHANGELOG.mdis missing, report that and stop.