Demo
Skill Systemartis/readmedaddy/skills/readmedaddy/eval/fixtures/skill-fixture/skills/demo
Agent Skill that writes the README your repo deserves — archetype detection, ten contextually-weighted quality gates, tournament ranking, claim verification, and an auto-update drift hook
npx -y skills add Systemartis/readmedaddy --skill demoAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 8 stars8 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
Use when a release is being cut and the CHANGELOG is empty, stale, or out of sync with the commits since the last tag; when commit messages need to be turned into human-readable release notes grouped by type; or when asked to "update the changelog", "write release notes", or "what changed since the last release". Not a version bumper and not a tag/publisher; yields to an existing changelog format already in the repo.
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.8 KB, as published. Nobody here has run it
changelog-scribe
changelog-scribe turns the commit range since the last release tag into a clean, grouped CHANGELOG section: features, fixes, and breaking changes, each as a reader-facing line rather than a raw commit subject. It follows Keep a Changelog ordering and never invents an entry that has no commit behind it.
Method
- Find the range. Resolve the latest release tag and collect commits from
that tag to
HEAD. If there is no tag, use the full history and say so. - Classify each commit. Bucket into Added / Changed / Fixed / Removed / Deprecated / Security from the commit type and body, dropping noise commits (merges, formatting-only, CI tweaks).
- Rewrite for readers. Convert each kept commit into a present-tense, user- facing line. A commit subject is a developer note; a changelog line is for the person upgrading.
- Assemble the section. Emit a dated
## [version]block in the repo's existing changelog order, breaking changes first and called out explicitly. - Verify. Every line traces back to a real commit in the range. Nothing is added that the diff does not support.
What's in references/
references/grouping.md— the commit-type to changelog-section mapping and the noise-commit filter rules.