원클릭으로
review-pr
Review GitHub Pull Request and analyze unresolved review comments
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Review GitHub Pull Request and analyze unresolved review comments
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Transform verbose natural language requests into structured bilingual documentation (Korean for review + English for AI prompts)
Review current git changes or latest commit using code-reviewer and architect-reviewer agents
Review comments and suggest cleanup (identify unnecessary comments, recommend improvements)
Generate Conventional Commits-compliant messages (feat/fix/docs/chore) in Korean and English
Identify and safely remove dead code, deprecated code, and unused exports from codebase
Generate business rule documentation from domain knowledge and requirements
| name | review-pr |
| description | Review GitHub Pull Request and analyze unresolved review comments |
| allowed-tools | Bash(gh:*), mcp__github__* |
| disable-model-invocation | true |
Review the Pull Request at the provided URL and analyze unresolved review comments to provide comprehensive code review feedback.
PR URL: $1
Fetch the PR details using GitHub CLI:
Fetch PR Details
gh pr view to get basic PR informationgh api graphql with external query file to fetch review threadsisResolved field for each threadisResolved: falseAnalyze Code Changes
isResolved: false)Review Criteria
Apply appropriate coding guidelines based on the project's language and framework.
Focus on:
Provide Review Feedback & Apply Fixes
For each comment that points to a real issue:
filepath:line_numberSummary
Provide an overall assessment:
# PR Review: [PR Title]
**PR**: [PR URL]
**Status**: [open/draft/closed]
**Files Changed**: [count]
## Review Threads Analysis & Fixes
### 1. [File Path]:[Line]
**Thread Status**: Unresolved
**Comment by @[username]**:
> [quoted comment]
**Current Code Status**:
- ✅ **Already fixed** - [explanation of how it was addressed]
- OR
- ⚠️ **Issue still present** - proceeding with fix
**Analysis** (if issue still present):
[Your detailed analysis based on review criteria]
**Action Taken**:
- ✅ **Fixed automatically**: [description of fix applied]
- OR
- ⏸️ **Requires discussion**: [reason why user input is needed]
**Relevant Guideline**: [Coding guideline reference if applicable]
---
### 2. [File Path]:[Line]
...
## Overall Assessment
- **Total Review Threads**: [count]
- **Resolved Threads (Skipped)**: [count]
- **Unresolved Threads Processed**: [count]
- **Issues Fixed Automatically**: [count]
- **Issues Requiring Discussion**: [count]
- **Overall Status**: [All issues resolved / Partial / Awaiting user input]
## Additional Observations
[Any other observations about the PR quality, architecture, or patterns used]
gh CLI authenticationisResolved field to skip resolved threads/review-pr https://github.com/owner/repo/pull/123
The command will fetch all review threads on PR #123, filter to only unresolved threads (isResolved: false), verify which issues still exist in current code, and provide fixes based on the appropriate coding guidelines.