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