Conventional commit
AI-agent skills for software engineering — works with Claude Code, Codex, Cursor
npx -y skills add vaibhavsaxena022/skills --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
- 23 days oldThe repository was created 23 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
Write a Conventional Commits message from the staged git diff. Use when the user asks to commit, write a commit message, or has just staged changes. Produces a properly formatted "type(scope): subject" with an optional body and footer.
SKILL.md
1.7 KB, as published. Nobody here has run it
Conventional Commit
Generate a commit message that follows the Conventional Commits spec from the currently staged changes.
Steps
- Run
git diff --staged. If nothing is staged, rungit statusand ask the user to stage changes first. - Pick the primary type:
feat— a new featurefix— a bug fixrefactor— code change that neither fixes a bug nor adds a featureperf— performance improvementtest— adding or fixing testsdocs— documentation onlybuild/ci— build system or CI changeschore— tooling, deps, housekeeping
- Infer a short scope from the touched module/package (optional).
- Compose the message:
type(scope): imperative subject, <=72 chars, no trailing period - what changed and why (wrap at 72 chars) BREAKING CHANGE: ... / Refs #123 (only if applicable)
Rules
- Subject in the imperative mood ("add", not "added" or "adds").
- One logical change per commit — if the diff mixes unrelated changes, suggest splitting them.
- Don't invent issue numbers or breaking-change notes.
- Output only the message. Run
git commitonly if the user asks.