review-prlisted
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.
### Intent digest
Build the PR's intent digest — an ordered list of `{source, claim}` entries per the intent priority in `claudius:severity` § Merge Classification:
1. Explicit user/session requirements and acceptance criteria the coordinator already holds
2. Linked issues (`closes`/`fixes #N` refs in the body — fetch via `issue_read`; `gh issue view` as CLI fallback)
3. PR title topics and behavioral claims from the body (reuse §2's extraction heuristics)
The digest feeds Pass C (§2) and the merge-classification step in consolidation (§3).
## 2. Pass C — Functional Promise Verification
Audit whether the diff **functionally delivers** what the PR's self-description c