← Back to list

commit-chunks
by ameyalambat128
⭐ 1🍴 0📅 Jan 14, 2026
SKILL.md
name: commit-chunks description: Review and commit git changes in meaningful, atomic chunks. Use when a user asks to review uncommitted changes, group them into logical commits, stage selectively, and create conventional-commit messages, including running status/diff and showing recent log.
Commit Chunks
Overview
Create clean, atomic git commits by reviewing uncommitted changes, grouping related edits, and committing with conventional messages that explain intent.
Workflow
1) Inspect current changes
- Run
git statusandgit diffto inventory changes. - If the user asked for a review, read each changed file and identify risks, regressions, and test gaps.
2) Group changes into commits
- Split by feature, file type, or purpose; keep each commit atomic.
- Do not mix unrelated changes. If unsure how to group, ask a brief clarification.
3) Stage and commit per group
- Stage only the relevant files for the group using
git add <files>. - Commit with a conventional message:
- Format:
<type>(<scope>): <description> - Use
feat,fix,chore,docs,refactor,style, ortest. - Write descriptions that explain why, not just what.
- Format:
- Repeat for each group.
4) Wrap up
- Show
git log --oneline -10after the last commit. - Summarize what was committed and any remaining uncommitted changes.
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