← ClaudeAtlas

devpilot-pr-reviewlisted

Use when the user asks to review a pull request, merge request, or a diff — "review this PR", "review PR
SiyuQian/devpilot · ★ 4 · Code & Development · score 67
Install: claude install-skill SiyuQian/devpilot
# PR Review (Eligibility-Gated, Parallel-Fanout, Inline-First) ## Overview A PR review the author can act on: every concrete finding is posted as an **inline comment anchored to the line it talks about**, drawn from a **parallel multi-angle scan** and filtered through an explicit **confidence rubric** so the author sees signal, not noise. The body holds a short verdict, strengths, the blind-spot sweep, and counts. Three structural ideas drive this skill: 1. **Eligibility gate** — decide the PR is worth a full review before spending tokens on it. Dependabot, drafts, generated-file PRs, "already reviewed" all stop here. 2. **Parallel fanout** — five core subagents (A–E) plus an optional sixth (F) look at the change from independent angles in parallel. Coverage comes from diversity of angle, not depth of a single pass. The main session dispatches and merges; subagents read code. Agent F (Dependency Reality Check) is dispatched only when the dispatcher's pre-extracted dependency manifest is non-empty — it verifies imports/packages resolve on their public registry, catching hallucinated names that pass every text-based agent. 3. **Confidence filtering** — every finding carries `Confidence: 0–100`. Findings below 70 are dropped by default. Coverage at collection, filtering at posting. ## When NOT to Use - Pure formatting / lint / rename PRs — defer to the relevant style skill. - Generated-file or dependency-bump PRs with no behavior change — the eligibility gate stops here. -