← スキル一覧に戻る

git-commit
by juljus
⭐ 0🍴 0📅 2026年1月15日
SKILL.md
name: git-commit description: Git commit guidelines with conventional format, safety checks, and granular strategy. Use when making commits, staging changes, or writing commit messages.
Git Commit
Pre-Commit Verification
Before committing, verify:
- Review changes - Check
git statusandgit diffto see what you're committing - Tests pass - Run relevant tests (ties to dev-workflow)
- Only your changes - Not pre-existing modifications or unrelated files
- Atomic scope - Each commit is one logical change
Commit Message Format
Follow conventional commits:
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
Types: feat, fix, docs, chore, refactor, test, style, perf, ci, build
Commit Strategy
- Multiple small commits > one large commit - Break work into logical units
- Commit timing: Auto-commit when logical step completes, or propose when appropriate
- Stage intentionally - Add files individually, know what you're committing
- Prefer MCP git tools when available over terminal commands
Safety Rules
- Never auto-push or auto-create PRs - Always ask first
- Add files individually - No wildcards (
-A,.,*) - Check for related issues - Close or ask to close if commit resolves them
Workflow Integration
- Branching: For large work, propose branches. Respect user preference for working in main
- Naming: Use kebab-case for repos and branches
スコア
総合スコア
45/100
リポジトリの品質指標に基づく評価
✓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
レビュー
💬
レビュー機能は近日公開予定です