원클릭으로
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.