원클릭으로
pr-review
Detailed PR review workflow from information gathering to analysis and approval/changes decision
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Detailed PR review workflow from information gathering to analysis and approval/changes decision
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Execute security scanning commands on remote worker agents. Use when you need to run CLI tools like nmap, subfinder, httpx, nuclei, or any shell command on worker nodes.
Perform deep analysis of CVEs and security vulnerabilities including CVSS scoring, affected versions, exploit maturity, and remediation steps. Use when the user needs detailed vulnerability intelligence.
Perform web research using CVE databases, security advisories, and threat intelligence sources. Use when the user asks about CVEs, security news, vulnerabilities, patch releases, or any external security information not available in the workspace.
Workflow for committing code with comprehensive validation from linting to deployment
Workflow for API development and modification with strict checks from design to deployment
Workflow for creating and submitting bug reports to GitHub
| name | pr-review |
| description | Detailed PR review workflow from information gathering to analysis and approval/changes decision |
Use this when reviewing a GitHub pull request. Covers information gathering, context understanding, change analysis, and the review/approval workflow.
# Get PR title, description, and comments
gh pr view <PR-number> --json title,body,comments
# Get the full diff
gh pr diff <PR-number>
# List modified files
gh pr view <PR-number> --json files
Examine original files in the main branch to understand context around changes.
For each modified file, understand what changed, why, how it affects the codebase, and potential side effects. Look for:
Before making a decision, present your assessment and ask the user whether to approve or request changes.
Offer to draft a well-structured comment the user can copy and paste.
# Approve
gh pr review <PR-number> --approve --body "Your message"
# Request changes
gh pr review <PR-number> --request-changes --body "Your feedback"
# Multi-line with proper formatting
cat << EOF | gh pr review <PR-number> --approve --body-file -
Your multi-line message
EOF
# Comment only (no approval/rejection)
gh pr review <PR-number> --comment --body "Your comment"
# List open PRs
gh pr list
# View PR details
gh pr view <PR-number> --json title,body,comments,files,commits
# PR diff
gh pr diff <PR-number>
# Check out PR locally
gh pr checkout <PR-number>
# Check PR status/checks
gh pr checks <PR-number>
gh pr status
# Merge PR
gh pr merge <PR-number> --merge