← Back to list

git-commit-helper
by qyinm
⭐ 0🍴 0📅 Jan 9, 2026
SKILL.md
name: git-commit-helper description: Provides expert guidance for Git commit messages, including conventional commit formatting and best practices. Use when creating or editing Git commit messages. allowed-tools:
- Bash
- Read
- Write
- Edit
- Glob
- Grep
Overview
Provides expert guidance for creating conventional commit messages that follow industry best practices. Helps generate clear, consistent commit messages by analyzing staged changes.
Conventional Commit Format
<type>(<scope>): <description>
[optional body]
[optional footer(s)]
Commit Types
- feat: A new feature for the user
- fix: A bug fix
- docs: Documentation only changes
- style: Changes that don't affect code meaning (white-space, formatting, missing semi-colons, etc.)
- refactor: Code change that neither fixes a bug nor adds a feature
- perf: Code change that improves performance
- test: Adding missing tests or correcting existing tests
- build: Changes that affect the build system or external dependencies
- ci: Changes to CI configuration files and scripts
- chore: Other changes that don't modify src or test files
- revert: Reverts a previous commit
Rules
- Type is mandatory: Choose the most appropriate type from the list above
- Scope is optional: Add in parentheses to specify what part of codebase (e.g.,
feat(auth):,fix(api):) - Description:
- Use imperative mood ("add" not "added" or "adds")
- Don't capitalize first letter
- No period at the end
- Keep under 72 characters
- Body is optional: Provide context about what and why, not how
- Footer is optional: Reference issues, note breaking changes
Examples
Simple commit
feat: add user authentication
With scope
fix(auth): prevent token expiration on refresh
With body
refactor(api): restructure endpoint handlers
Move handler logic into separate service layer to improve
testability and maintain single responsibility principle.
Breaking change
feat(api): change authentication response format
BREAKING CHANGE: API now returns user object instead of just token.
Update all API consumers to handle new response structure.
Multiple footers
fix(database): resolve connection pool exhaustion
Fixes #123
Closes #456
Score
Total Score
35/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
○言語
プログラミング言語が設定されている
0/5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon