What problem does it solve? Teams define coding standards in CLAUDE.md but have no systematic way to verify the codebase actually follows them, leading to rule drift and inconsistent code across files. ## Core Features & Use Cases - Rule Extraction: Reads the project's CLAUDE.md and converts every rule, constraint, and pattern into a numbered checklist. - Violation Scanning: Scans every .tsx/.ts/.jsx/.js file for violations, reporting exact file paths, line numbers, offending code, and the correct fix. - Prioritized Reports: Generates a Markdown audit report grouping violations by category and priority (P1 functionality risk, P2 inconsistency, P3 polish) with an actionable fix plan. - Use Case: Run a full audit on a React project to find every component that violates the styling or data-fetching rules defined in CLAUDE.md, then execute the fixes in priority order. ## Quick Start Ask the assistant to run a full project audit against the rules in CLAUDE.md and list all violations with fixes.