Conventional commits
Skill claudifytech/claude-code-skills-starter/skills/conventional-commits
Free starter skills for Claude Code: conventional commits, code review, test writing, and README generation, plus a starter CLAUDE.md. From the makers of Claudify.
npx -y skills add claudifytech/claude-code-skills-starter --skill conventional-commitsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 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
Write a clean Conventional Commits message from the staged git diff
SKILL.md
1.5 KB, as published. Nobody here has run it
Conventional Commits
Generate a well-formed Conventional Commits message for the currently staged changes.
When to use
When the user asks to write or suggest a commit message, or says "commit this."
Procedure
- Run
git diff --cachedto read the staged changes. If nothing is staged, say so and stop. - Determine the change type from the diff:
feata new feature,fixa bug fix,docsdocumentation only,refactora code change that neither fixes a bug nor adds a feature,testadding or fixing tests,choretooling or maintenance,perfa performance improvement. - Pick a short scope in parentheses when one part of the codebase is clearly affected, for example
feat(auth):. Omit the scope if the change is broad. - Write the subject line as
type(scope): summary. Imperative mood, lower case, no trailing period, under 72 characters. - If the change is non-trivial, add a blank line and a short body explaining the what and the why, not the how. Wrap at 72 columns.
- If anything breaks backward compatibility, add a
BREAKING CHANGE:footer describing it. - Output only the final commit message, ready to paste.
Example
feat(api): add cursor-based pagination to the users endpoint
Replaces offset pagination, which got slow past 10k rows. Returns a
next_cursor field; pass it back as ?cursor= to page forward.