← ClaudeAtlas

review-prlisted

This skill should be used when the user asks to "review this PR", "audit this pull request", or assess a PR for code quality, security, and correctness.
lklimek/claudius · ★ 1 · Code & Development · score 74
Install: claude install-skill lklimek/claudius
# PR Audit Workflow Workflow for auditing/reviewing a PR. Runs inline (not forked) so it — and the `/claudius:grumpy-review` it invokes in §3 — keeps the `Agent` tool and can fan out parallel reviewer agents. ## 1. Gather PR Context Load /claudius:git-and-github skill. Fetch PR metadata via `pull_request_read`: `method: "get"` (title, body, URL, base/head branches, number), `method: "get_files"` (changed files with stats), `method: "get_diff"` (full diff). **Note**: `get_files`/`get_diff` can return large responses — use the subagent delegation pattern from `git-and-github` skill § Context Management to avoid polluting your context. Use local git for commit history and detailed diffs. If GitHub MCP is unavailable, see [pr-review.md](../git-and-github/references/pr-review.md) for `gh` CLI equivalents. ### Context Digest **The single definition of "the digest"** — every other skill referencing it points here; none redefines its contents. Build it as an ordered list of `{source, claim}` entries plus four narrative fields: ``` Promises: <ordered {source, claim} list per the intent priority in `claudius:severity` § Merge Classification> Goal: <one line — what this PR is for> Non-goals: <PR body Out-of-scope/Non-goals sections + session knowledge> Operational profile: <per touched area: invocation (user action / cron / admin one-time), concurrency reality, failure cost — each claim WITH its evidence: entry-point trace, doc link, or explicit human statement> Architect