What problem does it solve? It enforces consistent, principle-based code quality by running a strict L4-level review on every code change, catching correctness bugs, coupling issues, and style violations before they reach production. ## Core Features & Use Cases - 15-Point Review Checklist: Covers correctness, naming, function size, DRY, coupling, error handling, resource cleanup, thread safety, and architecture, each mapped to numbered rules (CC/CA/PP) from three classic software engineering books. - Structured Severity Output: Produces a findings table with severity levels (critical/warning/minor), file and line locations, rule citations, and fix suggestions, plus a pass/fail summary against defined thresholds. - Python 2.7 and NetEase MC Adaptation: Adjusts standard rules for the NetEase Minecraft mod Python 2.7 runtime, including QuMod RPC conventions, main-thread enforcement, and centralized configuration checks. - Use Case: After modifying several game mod modules, ask for a review and receive a rule-cited report flagging a bare except clause, a circular import, and an unbound event listener before commit. ## Quick Start Review my recent code changes using the pragmatic clean code reviewer and report any critical or warning-level issues with fix suggestions.