CO
commit
Create clean, logically scoped commits that keep the repository in a shippable state.
Install
mkdir -p .claude/skills/commit-hojinzs && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/16555" && unzip -o skill.zip -d .claude/skills/commit-hojinzs && rm skill.zipInstalls to .claude/skills/commit-hojinzs
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Create clean, logically scoped commits that keep the repository in a shippable state.85 charsno explicit “when” trigger
About this skill
/commit — Clean Commit Workflow
Trigger
Use this skill when creating commits during implementation.
Rules
- Commit in logical units — one concern per commit
- Never commit a broken intermediate state (tests must pass)
- Never commit temporary debug code or commented-out blocks
- Run tests before every commit
Format
Use Conventional Commit format:
<type>(<scope>): <description>
[optional body — explain WHY, not WHAT, 72 chars/line]
[optional footer: Closes #N]
Types: feat, fix, refactor, test, docs, chore
Description: imperative mood, 50 chars max, no period at end
Examples
feat(auth): add OAuth2 token refresh
fix(api): handle null response from upstream
test(worker): add retry exhaustion coverage