ワンクリックで
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.