원클릭으로
local-review
Code review a pull request for bugs and CLAUDE.md compliance. MUST use when asked to review code.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Code review a pull request for bugs and CLAUDE.md compliance. MUST use when asked to review code.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | local-review |
| user_invocable | true |
| description | Code review a pull request for bugs and CLAUDE.md compliance. MUST use when asked to review code. |
Run the same review locally that the GitHub Claude Auto Review action runs on PRs. The shared review instructions live in .claude/review-prompt.md — read that file first and follow its instructions.
Read .claude/review-prompt.md for the review criteria and focus areas
Determine the PR scope:
gh pr view if a PR exists, or use git diff main...HEADGet the diff and metadata:
gh pr diff or git diff main...HEAD for the full diffgh pr view or git log main..HEAD --oneline for contextRead changed files where the diff alone is insufficient to understand context
Apply the review instructions from .claude/review-prompt.md
Self-validate each finding: Before reporting, ask yourself:
Output findings to the terminal (default) or post as PR comments (with --comment flag)
## Code review
Found N issues:
1. <description> (<reason: CLAUDE.md adherence | bug | security>)
<file_path:line_number>
2. <description> (<reason>)
<file_path:line_number>
If no issues are found:
## Code review
No issues found. Checked for bugs and CLAUDE.md compliance.
If the user passes --comment, post findings as inline PR comments using:
gh pr review --comment --body "<summary>"
Or for inline comments on specific lines:
gh api repos/{owner}/{repo}/pulls/{pr}/reviews -f body="<summary>" -f event="COMMENT" -f comments="[...]"
MUST use when writing Bun/TypeScript scripts.
MUST use when writing Bun Native scripts. The script must start with //native to run on the native worker.
MUST use when writing Deno/TypeScript scripts.
MUST use when writing Python scripts.
MUST use when writing Ansible playbooks.
MUST use when using the CLI, including debugging job failures and inspecting run history via `wmill job`.