From pr-reviewer
Trigger a comprehensive PR review. Runs code quality, security, test coverage, and performance analysis. Usage: /review-pr [PR number or branch name]
How this skill is triggered — by the user, by Claude, or both
Slash command
/pr-reviewer:review-prThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Perform a comprehensive review of the pull request $ARGUMENTS.
Perform a comprehensive review of the pull request $ARGUMENTS.
Use the pr-reviewer agent to:
Detect the hosting platform from the git remote URL:
git remote get-url origin
github.com → GitHubdev.azure.com / visualstudio.com → Azure DevOpsGather PR context via git commands (works on any platform):
# Base branch
BASE=$(git symbolic-ref refs/remotes/origin/HEAD 2>/dev/null | sed 's|refs/remotes/origin/||' || echo "main")
git log --oneline origin/${BASE}..HEAD # commit list
git diff origin/${BASE}...HEAD # full diff with patches
git diff --name-only origin/${BASE}...HEAD # changed file names
git diff --stat origin/${BASE}...HEAD # change stats
git rev-parse HEAD # head SHA
git log -1 --format="%an <%ae>" # author
git log --format="%s%n%b" origin/${BASE}..HEAD # PR description from commits
Use Read or git show HEAD:<filepath> to read full file content where needed.
Run specialized sub-agent reviews in parallel:
Compile all findings into a single structured report with:
APPROVE, REQUEST CHANGES, or NEEDS DISCUSSIONPost the review to the detected platform automatically — no user confirmation required:
providers/github.md — uses GitHub MCP or gh CLIproviders/azure-devops.md — uses curl with AZURE_TOKEN environment variableproviders/generic.md — writes report to pr-review-report.mdIf invoked with --fix: apply fixes and push before posting:
Write + git commit + git pushIf a branch name is provided (e.g., /review-pr feature/my-feature), compare that branch against main.
If no argument is given, review the current branch against main.
npx claudepluginhub 99x/xianix-team --plugin pr-reviewerReviews GitHub pull requests or git diffs (staged changes/files) by delegating to specialist agents for code quality, security, performance, and documentation in parallel.
Reviews pull requests across description, code changes, code scan, and unit tests using parallel subagents, producing a structured verdict report with optional line-level comments.
Reviews pull requests and local changes with focus areas: code, security, breaking, testing, size, performance.