بنقرة واحدة
commit-message
Draft a concise, well-formatted git commit message from the currently staged changes.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Draft a concise, well-formatted git commit message from the currently staged changes.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | commit-message |
| description | Draft a concise, well-formatted git commit message from the currently staged changes. |
When the user invokes this skill, follow this workflow exactly:
Run git status --porcelain via execute_command to confirm something is staged.
If nothing is staged, stop and tell the user to stage their changes first.
Run git diff --cached to see the staged changes.
Run git log -n 5 --pretty=format:"%s" so you can match the repo's existing
commit-message style (sentence case vs. lowercase, prefix tags, scopes, etc.).
Draft a commit message:
Show the message to the user inside a fenced code block. Do NOT commit —
the user will copy the message and run git commit themselves.
Keep it tight. Do not list every file changed; the diff already does that.