ワンクリックで
git-commit-craft
Write small, scoped, well-explained git commits instead of one giant dump of unrelated changes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Write small, scoped, well-explained git commits instead of one giant dump of unrelated changes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Write a well-formed SKILL.md (agentskills.io format) so it imports cleanly and actually gets used.
Systematically narrow down an Android app bug using adb logcat instead of guessing from the crash screenshot alone.
Sanity-check a shell command for destructive or irreversible side effects before running it, especially in an autonomous/unattended run.
| name | git-commit-craft |
| description | Write small, scoped, well-explained git commits instead of one giant dump of unrelated changes. |
Before committing, group the working-tree diff into the smallest set of logically-independent commits:
git status and git diff (staged and unstaged) first — never guess
at what changed.git add <specific files> rather than git add -A.git log --oneline -5 and git status to confirm
the commit landed as intended and nothing was left uncommitted or
accidentally staged.If the repo has its own CLAUDE.md/CONTRIBUTING commit-message convention (e.g. Conventional Commits, a required trailer, a specific verb list), that project-specific rule always wins over the generic guidance above.