원클릭으로
review-changes
Review unstaged git changes for bugs, logic errors, and security problems
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Review unstaged git changes for bugs, logic errors, and security problems
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | review-changes |
| description | Review unstaged git changes for bugs, logic errors, and security problems |
| disable-model-invocation | true |
Look at the currently unstaged changes in git and review them strictly for:
Obtain the diff to review using this fallback chain:
git diff. If this produces output, use it as the diff.git diff --cached. If this produces output, use it as the diff.git diff master...HEAD to see all committed changes on the current branch relative to master.If all three are empty, report that there is nothing to review and stop.
Be specific — reference file names and line numbers. Only flag things that actually matter.
Create and check out a feature branch when currently on master
Create a git commit with a short, lowercase commit message
Evaluate review comments from the conversation and determine which are valid
Analyze a GitHub issue and develop an implementation plan
Clean up worktrees for branches that have been merged and deleted
Create a new worktree and branch from a GitHub issue