← スキル一覧に戻る

commit
by amaiya
A lightweight Claude Code–inspired coding and automation assistant that supports both local and cloud LLMs.
⭐ 5🍴 0📅 2026年1月22日
SKILL.md
name: commit description: Create a well-formatted git commit following best practices
Git Commit Workflow
Follow these steps to create a high-quality commit:
1. Review Changes
- Use
git_statusto see what files have changed - Use
git_diffto review the actual changes - Ensure you understand what's being committed
2. Write Commit Message
Create a commit message that:
- Starts with a concise summary (50 chars or less)
- Uses imperative mood ("Add feature" not "Added feature")
- Includes details in the body if needed
- References any relevant issue numbers
3. Stage and Commit
- Stage only the relevant files (avoid staging unrelated changes)
- Use
run_shellto execute:git add <files> - Use
run_shellto execute:git commit -m "Your message"
4. Verify
- Use
git_logto confirm the commit was created correctly - Use
git_diffwith staged flag to ensure nothing unexpected was committed
Format Example
Add user authentication feature
- Implement JWT token generation
- Add login/logout endpoints
- Update user model with password hashing
Fixes #123
スコア
総合スコア
70/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です