Changelog
Portable agent workflow framework for Codex, Claude Code, and OpenCode—shared project context, focused skills, independent review, and safe updates.
npx -y skills add K95M65/AI_ONBOARD --skill changelogAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 19 days oldThe repository was created 19 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 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
Assemble release notes / a CHANGELOG entry from Conventional Commits since the last tag. Use when cutting a release or updating CHANGELOG.md. Pairs with the conventional-commit skill.
SKILL.md
1.5 KB, as published. Nobody here has run it
Changelog
Pairs with conventional-commit — it writes the commits, this rolls them into release notes.
When to use
Cutting a release, or updating CHANGELOG.md.
Steps
- Collect and group commits:
bash scripts/collect.sh [from-ref]. With no argument it uses the last tag →HEAD; the commits are grouped by Conventional Commit type (feat,fix, …). - Format into a Keep a Changelog entry under a version header, mapping types
to sections:
feat→ Added / Changed,fix→ Fixed,perf→ Performance,deprecate→ Deprecated,remove→ Removed, security fixes → Security.
- Surface breaking changes at the top: any commit with
!(e.g.feat!:) or aBREAKING CHANGE:footer. These drive the major-version bump. - Rewrite terse commit subjects into user-facing lines — the audience is a user reading release notes, not a developer reading git.
Template
## [x.y.z] — YYYY-MM-DD
### ⚠ Breaking changes
- …
### Added
- …
### Fixed
- …
Notes
chore/ci/build/test/docsusually don't belong in user-facing notes — omit or fold into one line.- Date is intentionally not auto-filled by the script (avoid surprises); set it when you cut the release.