بنقرة واحدة
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.