Review a pull request for quality, security, and correctness
Comprehensive PR review using code quality and security skills. Analyzes diffs, checks CI status, and provides actionable feedback on readability, security vulnerabilities, and best practices.
/plugin marketplace add ken2403/.claude-paralell-dev-plugin/plugin install pw@claude-parallel-dev-pluginPR number or branch nameopus$ARGUMENTS
# Get PR details
gh pr view $1 2>/dev/null || echo "Provide PR number as argument"
echo "=== Files Changed ==="
gh pr diff $1 --stat 2>/dev/null || git diff origin/main...HEAD --stat
echo ""
echo "=== Diff Preview (first 200 lines) ==="
gh pr diff $1 2>/dev/null | head -200 || git diff origin/main...HEAD | head -200
echo ""
echo "=== CI Checks ==="
gh pr checks $1 2>/dev/null || echo "Cannot fetch CI status"
MANDATORY: Apply the following skills for comprehensive review:
Code Quality Skill (/pw:code-quality):
Security Review Skill (/pw:security-review):
Refer to the skill definitions for detailed checklists.
# Review: PR #[number]
## Summary
[Brief description of what this PR does]
## Status: ✅ Approved | ⚠️ Changes Requested | ❌ Rejected
## Findings
### Critical Issues (Must Fix)
- [ ] [Issue description with file:line reference]
### Suggestions (Nice to Have)
- [ ] [Suggestion with reasoning]
### Questions
- [Question about implementation choice]
### Positive Notes
- [What was done well]
## Recommendation
[Approve / Request changes / Need discussion]
## Next Steps
- [What should happen after this review]
After review:
/pw:merge [pr-number]/pw:fix [review feedback] (in worker session)gh pr comment