$npx -y skills add fusengine/agents --skill pr-summarySummarize current pull request with diff, comments, and changed files. Use when reviewing PRs or before merging.
| 1 | # PR Summary Skill |
| 2 | |
| 3 | Summarize the current pull request. |
| 4 | |
| 5 | ## Pull Request Context |
| 6 | |
| 7 | - **PR diff:** !`gh pr diff` |
| 8 | - **PR comments:** !`gh pr view --comments` |
| 9 | - **Changed files:** !`gh pr diff --name-only` |
| 10 | - **PR status:** !`gh pr status` |
| 11 | |
| 12 | ## Task |
| 13 | |
| 14 | Analyze this pull request and provide: |
| 15 | |
| 16 | 1. **Overview** - What does this PR do? |
| 17 | 2. **Key Changes** - Main files and modifications |
| 18 | 3. **Potential Risks** - Breaking changes, security concerns |
| 19 | 4. **Review Recommendations** - What to check carefully |
| 20 | |
| 21 | ## Output Format |
| 22 | |
| 23 | ```markdown |
| 24 | ## PR Summary: [Title] |
| 25 | |
| 26 | ### Overview |
| 27 | [1-2 sentences] |
| 28 | |
| 29 | ### Key Changes |
| 30 | - [file]: [change description] |
| 31 | - ... |
| 32 | |
| 33 | ### Risks |
| 34 | - [risk if any] |
| 35 | |
| 36 | ### Recommendations |
| 37 | - [what to verify] |
| 38 | ``` |
| 39 | |
| 40 | ## Debug |
| 41 | |
| 42 | - Session: ${CLAUDE_SESSION_ID} |
| 43 | - Timestamp: !`date +%Y-%m-%d_%H:%M:%S` |