From cavemenko
Generate short commit messages in Conventional Commits format. Use when user asks to generate commit, describe changes for git, or calls /cavemenko-commit.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cavemenko:cavemenko-commitThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Generate short commit msg for current staged changes.
Generate short commit msg for current staged changes.
Conventional Commits. Structure: <type>(<scope>): <description>
Types: feat, fix, docs, style, refactor, perf, test, chore, build, ci
git diff already shows whatGood:
fix(auth): check token expiry with strict inequality
Previous check used `<=` which accepted tokens at exact expiry time.
Clock skew between services caused intermittent 401s.
Good (self-sufficient subject):
docs: fix typo in README install instructions
Bad:
Updated some files.
Bad (repeating what diff shows):
feat: add new function called validateInput to utils.js
git diff --cachednpx claudepluginhub ruslanlap/cavemenko --plugin cavemenkoGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.