원클릭으로
review
Review current code changes for bugs, regressions, test gaps, and project-guideline violations.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Review current code changes for bugs, regressions, test gaps, and project-guideline violations.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Release a new version of the project.
Inspect git status, draft a commit message that matches the repo's style, and commit staged changes.
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.
| name | review |
| description | Review current code changes for bugs, regressions, test gaps, and project-guideline violations. |
Review focus (optional): $ARGUMENTS
Gather change context. Run in parallel:
git status --shortgit diff --stagedgit diffgit ls-files --others --exclude-standardgit log -n 3 --onelineReview both staged and unstaged changes. Treat untracked files as relevant when
they appear related to the user's request, and open them directly because
git diff will not show their contents.
Read project conventions. If AGENTS.md, CLAUDE.md, or
CONTRIBUTING.md exist at the repo root, read them before judging the diff.
Inspect the changed code. Open the files and surrounding code needed to verify behavior. Do not rely only on the diff when control flow, data shape, or tests depend on nearby context.
Review against these checks:
Correctness
Surgical Changes
Simplicity
Testing
Style
gofmt)Report findings first.
file:line references for every finding.Do not apply fixes yourself. Present the review and let the user decide what to fix.
Use this structure:
Keep summaries brief. If there are no findings, the first line should state that no issues were found.