بنقرة واحدة
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