pr-review
SolidPR Code Review (Local): perform a thorough local code review with full project context. Use when: (1) User asks to review a PR, (2) User says "/pr-review", (3) User wants to review code changes before merging.
AI & Automation 604 stars
115 forks Updated 3 days ago AGPL-3.0
Install
Quality Score: 85/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# PR Code Review (Local)
Perform a thorough local code review with full project context - reads source files directly, no API truncation limits.
**Announce at start:** "I'm using pr-review skill to review the pull request."
## Usage
```
/pr-review [pr_number]
```
`$ARGUMENTS` may contain an optional PR number and/or `--automation` flag.
- Without `--automation`: interactive mode (prompts for confirmation, comment, cleanup)
- With `--automation`: non-interactive mode (auto-post comment, auto-delete branch, output machine-readable result)
---
## Steps
### Step 1 - Determine PR Number
If `$ARGUMENTS` is non-empty, use it as the PR number.
Otherwise run:
```bash
gh pr view --json number -q .number
```
If this also fails (not on a PR branch), abort with:
> No PR number provided and cannot detect one from the current branch. Usage: `/pr-review <pr_number>`
Also parse `--automation` from `$ARGUMENTS`:
```bash
AUTOMATION_MODE=false
if echo "$ARGUMENTS" | grep -q -- '--automation'; then
AUTOMATION_MODE=true
fi
```
### Step 2 - Check CI Status
```bash
gh pr view <PR_NUMBER> --json statusCheckRollup \
--jq '.statusCheckRollup[] | {name: .name, status: .status, conclusion: .conclusion}'
```
**Required jobs to check:**
- `Code Quality`
- `Unit Tests (ubuntu-latest)`
- `Unit Tests (macos-14)`
- `Unit Tests (windows-2022)`
- `Coverage Test`
- `i18n-check`
(`build-test` is an optional job and is not included in the required check list.)
**Special cases:** Skip this ...
Details
- Author
- FerroxLabs
- Repository
- FerroxLabs/wayland
- Created
- 3 months ago
- Last Updated
- 3 days ago
- Language
- TypeScript
- License
- AGPL-3.0
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
pr-review
Review a PR for correctness, security, code quality, and testing issues. TRIGGER when user asks to review a PR, check PR quality, or give feedback on a PR.
35 Updated today
HIDORAKAI002 Code & Development Featured
pr-review
Fix PR review comments by implementing requested changes
120 Updated today
jellydn Code & Development Listed
pr-review
{{ 𝛀𝛀𝛀 }} Review a pull request
5 Updated 2 days ago
JasonWarrenUK