一键导入
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.