← Back to list
Breaking change with

commit
by skilluse
Agent Skills Registry & CLI
⭐ 39🍴 2📅 Jan 23, 2026
SKILL.md
name: commit description: Generate Conventional Commits 1.0.0 compliant messages. Use when the user says "commit", "create commit", or finishes implementing code.
Conventional Commits Generator
Generate commit messages following the Conventional Commits 1.0.0 specification.
Commit Message Structure
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
Instructions
When the user asks to commit changes:
-
Analyze the changes by running:
git statusto see all modified/added/deleted filesgit diff --stagedto see staged changesgit diffto see unstaged changesgit log -5 --onelineto match the repository's commit style
-
Determine the commit type (REQUIRED):
Type Description SemVer featNew feature MINOR fixBug fix PATCH docsDocumentation only - styleFormatting, no code change - refactorCode change, no feature/fix - perfPerformance improvement - testAdding/updating tests - buildBuild system or dependencies - ciCI configuration - choreOther changes - -
Identify breaking changes:
- Append "!" after type/scope for breaking changes: "feat!:" or "feat(api)!:"
- Add "BREAKING CHANGE:" footer for detailed explanation
- Breaking changes trigger MAJOR version bump
-
Write the commit message:
- Description MUST immediately follow the colon and space
- Description is a short summary in imperative mood
- Body MUST begin one blank line after description
- Footers MUST begin one blank line after body
-
Stage and commit:
- Stage relevant files with
git add - Create commit with the generated message
- Show
git statusafter to confirm success - DO NOT add any Claude Code references, co-author tags, or "Generated with" footers
- Stage relevant files with
Specification Rules
- Type MUST be a noun (
feat,fix, etc.) - Scope MUST be a noun in parentheses describing codebase section
- Description MUST use imperative mood ("add" not "added")
- Body is free-form, may have multiple paragraphs
- Footer token MUST use
-instead of spaces (exceptBREAKING CHANGE) BREAKING CHANGEMUST be uppercase- NEVER include AI-generated markers, Claude Code references, or
Co-Authored-By: Claudefooters
Examples
Feature with breaking change footer
feat: allow provided config object to extend other configs
BREAKING CHANGE: `extends` key in config file is now used for extending other config files
Breaking change with !
feat(api)!: send an email to the customer when a product is shipped
Breaking change with exclamation mark and footer
chore!: drop support for Node 6
BREAKING CHANGE: use JavaScript features not available in Node 6.
Simple docs change (no body)
docs: correct spelling of CHANGELOG
Feature with scope
feat(lang): add Polish language
Fix with multi-paragraph body and footers
fix: prevent racing of requests
Introduce a request id and a reference to latest request. Dismiss
incoming responses other than from latest request.
Remove timeouts which were used to mitigate the racing issue but are
obsolete now.
Reviewed-by: Z
Refs: #123
Revert commit
revert: let us never again speak of the noodle incident
Refs: 676104e, a215868
Footer Formats
Footers follow git trailer format:
Token: valueorToken #value- Common footers:
Refs:,Closes:,Reviewed-by:,Co-authored-by: BREAKING CHANGE: descriptionfor breaking changes
Interactive Mode
If changes are complex or ambiguous, ask the user:
- Which files to include in the commit
- What type of change this represents
- If there are breaking changes
- If they want to split into multiple commits (encouraged by spec)
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon