원클릭으로
pr-summary
Summarize changes and discussion in a pull request
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Summarize changes and discussion in a pull request
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Guides building and testing conversational Claude skills. Use when creating a new skill, reviewing an existing skill, or iterating on skill design. Trigger when users say things like "create a new skill", "build a skill", "review this skill", or "make this skill better."
Deeply analyze codebase architecture and dependencies. Use when understanding system design, finding patterns, or mapping how components interact.
Project coding standards and conventions. Loaded automatically when writing or reviewing code to ensure consistency.
Fix a GitHub issue by implementing the requested changes
Brief description of when to use this skill
SOC 직업 분류 기준
| name | pr-summary |
| description | Summarize changes and discussion in a pull request |
| argument-hint | ["pr-number"] |
| context | fork |
| agent | Explore |
| allowed-tools | ["Bash(gh *)"] |
Generate a comprehensive summary of pull request $ARGUMENTS.
The following information is loaded dynamically before Claude sees this skill:
!gh pr view $ARGUMENTS --json title,body,author,createdAt,state,isDraft,labels | jq -r '.title, .body, .author.login, .createdAt, .state, .isDraft, (.labels[].name // empty)'
!gh pr diff $ARGUMENTS --name-only
!gh pr diff $ARGUMENTS
!gh pr view $ARGUMENTS --json comments --jq '.comments[] | "\(.author.login) (\(.createdAt)): \(.body)"'
!gh pr view $ARGUMENTS --json reviews --jq '.reviews[] | "\(.author.login) - \(.state): \(.body // "No comment")"'
!gh pr checks $ARGUMENTS
Analyze all the above information and provide a comprehensive summary:
List the most important changes:
Focus on the "why" and impact, not just listing files.
Summarize meaningful discussion points:
Skip trivial comments like "LGTM" unless they're the only reviews.
Provide an objective assessment:
Strengths:
Concerns (if any):
CI/Test Status:
Based on the above analysis:
Keep the summary concise but thorough:
!command`` syntax executes commands BEFORE Claude sees this prompt