원클릭으로
commit
Inspect git status, draft a commit message that matches the repo's style, and commit staged changes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Inspect git status, draft a commit message that matches the repo's style, and commit staged changes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Release a new version of the project.
Ask focused clarifying questions to resolve ambiguous requirements before planning or implementing work.
Explain code, behavior, architecture, or diffs with concrete references to the relevant files.
Diagnose failing tests, determine whether code or tests are wrong, and make the smallest passing fix.
Refactor existing code while preserving behavior, keeping changes scoped, and verifying with relevant tests.
Review current code changes for bugs, regressions, test gaps, and project-guideline violations.
| name | commit |
| description | Inspect git status, draft a commit message that matches the repo's style, and commit staged changes. |
User intent (optional): $ARGUMENTS
Survey the working tree. Run in parallel:
git status --shortgit diff --stagedgit diffgit log -n 5 --onelineUse the log to learn the repo's commit-message style (conventional commits, plain sentences, scope prefixes, etc.).
Decide what to stage.
git add <path>.git add -A or git add . — they can leak secrets or stray files.Draft the message.
git log style.Commit. Use a heredoc so multi-line bodies survive shell quoting:
git commit -m "$(cat <<'EOF'
<subject>
<optional body>
EOF
)"
Verify. Run git status and report the result to the user. Do not push — that is a separate, explicit step the user must request.
If a pre-commit hook fails, do not retry with --no-verify. Read the hook output, fix the underlying issue, re-stage the affected files, and create a new commit. Never amend in this case — the prior commit did not happen, so --amend would target the wrong thing.