← Back to list

commit-chunks
by ameyalambat128
⭐ 1🍴 0📅 Jan 14, 2026
SKILL.md
name: commit-chunks description: Review and commit changes in meaningful chunks. Use when the user has multiple uncommitted changes that should be organized into logical, atomic commits. allowed-tools: Bash(git:*)
Commit Chunks
Review and commit changes in meaningful chunks.
Instructions
- Run
git statusandgit diffto see all uncommitted changes - Review each changed file and understand what was modified
- Group related changes into logical commits (e.g., by feature, by file type, by purpose)
- For each group:
- Stage only the relevant files with
git add <files> - Create a commit with a clear, descriptive message following conventional commits (feat, fix, chore, docs, refactor, style, test)
- Stage only the relevant files with
- After all commits, show
git log --oneline -10to display the results
Commit Message Format
<type>(<scope>): <description>
[optional body]
Examples:
feat(studio): add branding to graph controlsfix(cli): resolve path issue in static file servingchore: update gitignore for docs folder
Guidelines
- Keep commits atomic (one logical change per commit)
- Don't mix unrelated changes in the same commit
- Write commit messages that explain WHY, not just WHAT
- If unsure about grouping, ask for clarification
Score
Total Score
50/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
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon