Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Efficiently respond to PR review comments. Trigger with "fix review comments", "address PR feedback", "implement review fixes", "respond to review".
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-06 | ✗→✓ | ▲ Improved | 51% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 127% | 0% |
| case-11 | ✗→✓ | ▲ Improved | -10% | 0% |
| case-20 | ✗→✓ | ▲ Improved | 5% | 0% |
| case-23 | ✗→✓ | ▲ Improved | 36% | 0% |
Efficiently handle Pull Request review comments and achieve root cause resolution using a 3-stage error analysis approach.
bash# Retrieve and analyze review comments gh pr view --comments "Classify review comments by priority and create an action plan" # Detailed analysis of error-related comments gh pr checks "Analyze CI errors using a 3-stage approach to identify root causes" # Quality confirmation after fixes npm test && npm run lint "Fixes are complete - please check regression tests and code quality"
bash# Classify comments gh pr view 123 --comments | head -20 "Classify review comments into must/imo/nits/q categories and determine response order" # Collect error information npm run build 2>&1 | tee error.log "Identify the root cause of build errors and suggest appropriate fixes" # Verify fix implementation git diff HEAD~1 "Evaluate whether this fix appropriately addresses the review comments"
text🔴 must: Required fixes ├─ Security issues ├─ Functional bugs ├─ Design principle violations └─ Convention violations 🟡 imo: Improvement suggestions ├─ Better implementation methods ├─ Performance improvements ├─ Readability enhancements └─ Refactoring proposals 🟢 nits: Minor points ├─ Typo fixes ├─ Indentation adjustments ├─ Comment additions └─ Naming refinements 🔵 q: Questions/confirmations ├─ Implementation intent verification ├─ Specification clarification ├─ Design decision background └─ Alternative solution consideration
Required actions
Recommended actions
bash# Basic checks npm test npm run lint npm run build # Regression tests npm run test:e2e # Code quality npm run test:coverage
Fix completion report
markdown@reviewer Thank you for your feedback. Fixes are complete: - [Specific fix details] - [Test results] - [Verification method]
Technical decision explanation
markdownImplementation background: [Reason] Considered alternatives: [Options and decision rationale] Adopted solution benefits: [Advantages]
Other measured skills in the registry, with their headline benchmark lift.