スキル一覧に戻る
ameyalambat128

commit-chunks

by ameyalambat128

1🍴 0📅 2026年1月14日
GitHubで見るManusで実行

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 status and git diff to 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, or test.
    • Write descriptions that explain why, not just what.
  • Repeat for each group.

4) Wrap up

  • Show git log --oneline -10 after the last commit.
  • Summarize what was committed and any remaining uncommitted changes.

スコア

総合スコア

50/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
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です