원클릭으로
commit-clean-conventional
Stage the right changes and write a clear, conventional commit message.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Stage the right changes and write a clear, conventional commit message.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | Commit (clean, conventional) |
| description | Stage the right changes and write a clear, conventional commit message. |
| triggers | ["commit","git commit","write commit message"] |
Use this when the user asks to commit work. Produce a focused commit with a message that explains why, not just what.
git status and git diff (and git diff --staged) to see exactly
what changed. Read the changes — do not commit blind.git add -A without checking what it picks up.type(scope): summary, <=72 chars):
feat / fix / refactor / docs / test / chore. Add a body explaining the
reason and any trade-offs when the change is non-trivial.Review a specific GitHub pull request with gh — fetch the diff, fan out reviewers, consolidate, and optionally post the review. Requires the `gh` CLI or the GitHub MCP server.
Systematically diagnose and fix a bug instead of guessing.
Add clear docstrings/comments and update docs for changed or unfamiliar code.
Map and explain an unfamiliar codebase or module to the user.
Improve code structure in small, safe steps without changing behavior.
Add focused, meaningful tests for code — happy path plus the edge cases that matter.