agentsclimarketplace

Clean skill

Skill tolztoy/skillci/fixtures/clean-skill

Generates a clean, grouped CHANGELOG entry from a list of git commit messages. Use when the user asks to draft release notes or a changelog from recent commits.From its SKILL.md

Install
npx -y skills add tolztoy/skillci --skill clean-skill

Assembled 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 1 command, including `git log --oneline`.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

1.2 KB, 256 tokens by cl100k_base, as published. Nobody here has run it

Changelog Writer

Turn raw commit messages into a readable changelog section.

Procedure

  1. Read the commit messages provided by the user (or run git log --oneline if asked).
  2. Group commits into these sections, skipping any that are empty:
    • Added — new features (commits starting with feat)
    • Fixed — bug fixes (commits starting with fix)
    • Changed — other user-facing changes
    • Internal — chores, refactors, tests (commits starting with chore, refactor, test)
  3. Rewrite each entry in the past tense, imperative voice, without the commit prefix.
  4. Output a Markdown section headed with the version and today's date.

Example

Input commits:

feat: add dark mode toggle
fix: correct timezone in date picker
chore: bump deps

Output:

## 1.4.0 — 2026-06-10

### Added
- Dark mode toggle

### Fixed
- Correct timezone in the date picker

### Internal
- Bumped dependencies

Keep entries short. Never invent changes that aren't in the commits.

What ships with it: 1 file

322 B alongside SKILL.md

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.