← ClaudeAtlas

code-reviewlisted

Review the changes since a fixed point (commit, branch, tag, or merge-base) along three axes — Risk (bugs, security, concurrency, coverage gaps), Standards (does the code follow this repo's documented standards?), and Spec (does it match what the issue/spec asked for?). Scores blast radius, runs a Roslyn pre-pass, fans out to parallel sub-agents, verifies findings, and reports them severity-ranked. Use when the user wants to review a branch, a PR, work-in-progress changes, or asks to "review since X".
lamuniercosta/dotnet-agent-harness · ★ 0 · Code & Development · score 72
Install: claude install-skill lamuniercosta/dotnet-agent-harness
Three-axis review of the diff between `HEAD` and a fixed point the user supplies: - **Risk** — is the code correct, safe, and adequately tested? - **Standards** — does the code conform to this repo's documented coding standards? - **Spec** — does the code faithfully implement the originating issue / spec? Each axis runs as a **parallel sub-agent** so they don't pollute each other's context. Findings are then verified, ranked by severity, and reported through `ReportFindings`. ## Process ### 1. Pin the fixed point Whatever the user said is the fixed point — a commit SHA, branch name, tag, `main`, `HEAD~5`, etc. If they didn't specify one, ask for it. Capture the diff command once: `git diff <fixed-point>...HEAD` (three-dot, so the comparison is against the merge-base). Also note the list of commits via `git log <fixed-point>..HEAD --oneline`. Before going further, confirm the fixed point resolves (`git rev-parse <fixed-point>`) and the diff is non-empty. A bad ref or empty diff should fail here — not inside three parallel sub-agents. ### 2. Score blast radius Blast radius sets review depth, not line count. A one-line middleware change outranks a 300-line rename. Score each changed file from `git diff --stat`: | Blast radius | Examples | Depth | |---|---|---| | **Critical** | Middleware, auth/authz, DB migrations, shared kernel, CI/CD, crypto, public contracts | Thorough — every code path | | **High** | Public API changes, message consumers, EF configuration, new modu