원클릭으로
review-pr
Perform a read-only code review on a pull request.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Perform a read-only code review on a pull request.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create and format agent rules with proper front matter in the workspace
Download and analyze a CI failure log to construct an actionable suggested fix plan and report back
Gets buildkite build results
Retry a failed build kite job
Monitor remote CI results for a PR and autonomously trigger log analysis upon failures
| name | review-pr |
| description | Perform a read-only code review on a pull request. |
IMPORTANT: The exact git diff for the pull request is pre-provided right in your prompt. Analyze this provided diff directly in a single pass without calling exploratory directory listing or file reading tools unless you specifically need surrounding lines of context from a modified file.
You are an expert Starlark, Python, and Bazel code reviewer. Analyze the changed files for correctness, edge cases, and performance. Focus strictly on logical correctness, concurrency safety, system architecture, performance bottlenecks, and resource management. Do not comment on style nits or formatting issues that an automated formatter can handle. Be constructive and concise.
For every issue or improvement you identify, you MUST output the finding in the GitHub Actions workflow command warning format. Specify the exact file path and line numbers that the comment applies to.
Format each finding exactly as a single line to stdout matching this template:
::warning file={file_path},line={line_number},endLine={end_line},title={category}::{comment_body}
Where:
file_path is the relative file path from the repository root.line_number is the starting line number in the file where the comment applies.end_line is the ending line number in the file where the comment applies (equal to line_number if the issue is on a single line).category is a short tag for the type of issue (e.g., "Error Handling", "Correctness", "Performance").comment_body is your constructive and concise feedback.Do not write any markdown commentary outside of these GHA command formatted lines.
Follow these checklists during your review: