What problem does it solve?
Systematic, multi-pass code review workflow that identifies and documents issues across correctness, security, performance, readability, and consistency, delivering structured findings with per-file locations, severity, and remediation.
Core Features & Use Cases
- Pass 1: Correctness — Reads every change, validates intended behavior, detects off-by-one errors, faulty comparisons, and missing null checks; reports findings as: [CORRECTNESS] file:line — severity — description.
- Pass 2: Security — Checks for injections, hardcoded secrets, missing authorization, unsafe deserialization, and logs with sensitive data; reports as: [SECURITY] file:line — severity — description.
- Pass 3: Performance — Identifies N+1 queries, unnecessary loops, memory leaks, and unbounded resource usage; reports as: [PERFORMANCE] file:line — severity — description.
- Pass 4: Readability — Flags misleading names, magic numbers, overly complex conditions, and missing error context; reports as: [READABILITY] file:line — severity — description.
- Pass 5: Consistency — Ensures adherence to project conventions (CLAUDE guidelines, reporting format, error context, and export style); reports as: [CONSISTENCY] file:line — severity — description.
- Verdict — Summarizes all findings and issues a single PASS, CONDITIONAL, or FAIL verdict based on severity distribution.
Quick Start
Review the provided diff with the five-pass reviewer to generate a structured report of findings, severities, and recommended fixes.