From pr-workflow
Script-first review-only GitHub pull request analysis. Use for deterministic PR review with structured findings handoff to /prepare-pr.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pr-workflow:review-prThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Perform a read-only review and produce both human and machine-readable outputs.
Perform a read-only review and produce both human and machine-readable outputs.
.worktrees/pr-<PR>.${CLAUDE_PLUGIN_ROOT}/scripts/pr-review <PR>
${CLAUDE_PLUGIN_ROOT}/scripts/pr review-checkout-main <PR>${CLAUDE_PLUGIN_ROOT}/scripts/pr review-checkout-pr <PR>${CLAUDE_PLUGIN_ROOT}/scripts/pr review-guard <PR>
.local/review.md with sections A through J..local/review.json with structured findings.${CLAUDE_PLUGIN_ROOT}/scripts/pr review-validate-artifacts <PR>
${CLAUDE_PLUGIN_ROOT}/scripts/pr-review <PR>
ls -la .local/pr-meta.json .local/pr-meta.env .local/review-context.env .local/review-mode.env
${CLAUDE_PLUGIN_ROOT}/scripts/pr review-checkout-main <PR>
rg -n "<keyword>" -S src extensions apps || true
git log --oneline --all --grep "<keyword>" | head -20
gh_user=$(gh api user --jq .login)
gh pr edit <PR> --add-assignee "$gh_user" || echo "Could not assign reviewer, continuing"
${CLAUDE_PLUGIN_ROOT}/scripts/pr review-checkout-pr <PR>
gh pr diff <PR>
source .local/review-context.env
git diff --stat "$MERGE_BASE"..pr-<PR>
git diff "$MERGE_BASE"..pr-<PR>
Use the wrapper for target validation and executed-test verification:
${CLAUDE_PLUGIN_ROOT}/scripts/pr review-tests <PR> <test-file> [<test-file> ...]
${CLAUDE_PLUGIN_ROOT}/scripts/pr review-artifacts-init <PR>
.local/review.md sections A through J..local/review.json.Minimum JSON shape:
{
"recommendation": "READY FOR /prepare-pr",
"findings": [
{
"id": "F1",
"severity": "IMPORTANT",
"title": "...",
"area": "path/or/component",
"fix": "Actionable fix"
}
],
"tests": {
"ran": [],
"gaps": [],
"result": "pass"
},
"docs": "up_to_date|missing|not_applicable",
"changelog": "required"
}
${CLAUDE_PLUGIN_ROOT}/scripts/pr review-guard <PR>
${CLAUDE_PLUGIN_ROOT}/scripts/pr review-validate-artifacts <PR>
npx claudepluginhub nikolasp98/minion_plugins --plugin pr-workflowReviews GitHub PRs with parallel agents for expected changes validation, security audit, code quality checks via linters, test execution, and logic analysis.
Reviews GitHub pull requests end-to-end using the gh CLI. Covers diff analysis, commit history, CI checks, and severity-leveled feedback submission.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.