| name | review-pr |
| description | Use when performing pull request reviews before merging. Triggers on phrases like "review PR", "review pull request", "code review", "PR review". |
Review Pull Request
Performs a systematic pull request review.
When to use
- Reviewing PRs before merging
- Validating overall code quality
- Checking that tests were added
- Assessing the impact of changes
Review checklist
Architecture
Tests
Code quality
Build & CI/CD
Documentation
Red flags
Request changes if you find:
- Domain importing
org.gradle.api.*
- Presentation layer containing business logic
- Flaky or missing tests
- Decreased coverage
- Circular imports
Feedback template
## What looks good
- Well-organized architecture
- Comprehensive tests
## Request changes
- [ ] Add test for edge case with empty modules
- [ ] Update docs/2-existing-rules.md
## Notes
- Consider refactoring MyRule into smaller functions