Changelog
Compile one Agent Skill into harness-native skills for every coding agent
npx -y skills add ravistakumar/cast --skill changelogAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 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
Generate grouped release notes from git commit history since the last tag.
SKILL.md
0.8 KB, as published. Nobody here has run it
Changelog
Generate a clean, grouped changelog (release notes) from the commits made since the most recent git tag.
Steps
- Run
scripts/collect-commits.shto list the commits since the last tag. - Use Grep to scan the commit subjects for conventional-commit prefixes
(
feat:,fix:,deps:,docs:) and group them into sections. - For any entry that needs more context, use Bash to read the full message with
git show --no-patch <hash>. - Write the result as Markdown under a
## <version>heading, in this order: Features, Fixes, then everything else. Keep entries terse and user-facing, and drop noise like merge commits.