Conventional commit
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 conventional-commitAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 21 days oldThe repository was created 21 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
Writes a Conventional Commits message from the currently staged git changes. Use when the user asks to commit, wants a commit message drafted, or asks you to figure out the right commit type/scope for staged work.
SKILL.md
2.0 KB, 458 tokens by cl100k_base, as published. Nobody here has run it
Conventional Commit
Draft a well-formed Conventional Commits message from what's currently staged, then commit it.
When to use
The user has staged changes (or asks you to stage them) and wants a properly formatted commit — e.g. "commit this", "write a commit message", "what type should this commit be?".
Steps
-
Inspect the staged changes — do not guess from memory:
bash scripts/staged-summary.shIf it reports nothing staged, ask whether to
git addthe intended files first. Nevergit add -Awithout confirming scope. -
Choose the type from the diff:
Type Use when featA new feature / capability fixA bug fix docsDocs only refactorBehavior-preserving code change testAdding/adjusting tests choreTooling, deps, config, build perfPerformance improvement ciCI config/scripts -
Pick a scope (optional) — the package/area touched, from the file paths (e.g.
api,auth,ui). -
Write the subject — imperative mood, lowercase, ≤ ~72 chars, no trailing period:
type(scope): do the thing. Add a body only if the why isn't obvious. AddBREAKING CHANGE:footer (or!after the type) for breaking changes. -
Commit — show the message first, then:
git commit -m "type(scope): subject" -m "optional body"
Rules
- Base the type/scope on the actual diff, not the user's phrasing.
- One logical change per commit — if the diff spans unrelated concerns, say so and suggest splitting.
- Never invent a co-author or trailer the user didn't ask for.
What ships with it: 1 file
717 B alongside SKILL.md, 1 of them executable
scripts/
- staged-summary.shruns717 B