Changelog summary
Skill skills-lock/example-claude-code-skills/.claude/skills/changelog-summary
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.From its SKILL.md
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.
2 things 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.
- runs commandsInstructs the agent to run 2 commands, including `git describe --tags --abbrev=0` and 1 more.
SKILL.md
0.9 KB, 152 tokens by cl100k_base, 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.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.