원클릭으로
git-commit-fixup
Analyze working tree changes, map to existing commits, and create fixup commits for autosquash
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Analyze working tree changes, map to existing commits, and create fixup commits for autosquash
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create a Claude Code rule, skill, or agent — global (~/.claude) or project-local (.claude)
Code review using OpenAI Codex CLI with project context (rules, diff, conventions)
Multi-perspective code review from base branch with 3 independent reviewer agents
Analyze working tree changes, plan logically minimal NEW atomic commits per hunk (no fixup), and execute them
Review every commit message since base branch and add reword fixups where the message needs improvement (non-interactive)
Analyze working tree changes and commit them — fixup into existing commits where appropriate, otherwise new atomic commits
| name | git-commit-fixup |
| disable-model-invocation | true |
| description | Analyze working tree changes, map to existing commits, and create fixup commits for autosquash |
| argument-hint | [context] |
Follow ~/.claude/skills/git-commit/COMMON.md for the invocation contract,
conventions (especially fixup mapping), language policy, base branch
detection, execute procedure, and autosquash presentation — read it first if
it is not already in context. This file defines only what is specific to
/git-commit-fixup.
context (optional): Additional context for mapping changes to commits
(e.g., "These changes are for the auth refactor"). Used to inform which
existing commits the changes should be mapped to.Maps working tree changes to existing commits as fixup commits for
git rebase -i --autosquash. Changes with no related commit become new
commits. Use /git-commit for the general fixup-or-new behavior.
Analyze (read-only git):
git log --oneline <base>..HEAD. If there are no
commits to fixup against, inform the user and suggest /git-commit
instead. STOP.git status --short, git diff --stat,
git diff --cached --stat. If nothing to commit, inform the user and
STOP.git diff and git diff --cached; inspect
candidate target commits with git show --stat <sha> / git show <sha>
as needed.fixup, with
new for anything unmapped). Each entry: type, target SHA (for
fixup) or full message (for new), and the explicit list of files
to stage.Execute per COMMON.md (backup reason: "before commit-fixup").
Present per COMMON.md.