Code ReviewFLAGSHIP
Review a diff for correctness bugs, security holes, and unnecessary complexity -- with a verify pass that kills false positives before they reach the output.
Complexity Analyzer
Point at the functions actually worth simplifying by combining cyclomatic complexity, nesting depth, and how often the function actually changes.
Dead Code Finder
Find code nothing calls -- unused exports, unreachable branches, orphaned files -- and verify each one before recommending deletion.
Simplify & Refactor
Reduce accidental complexity in changed code without changing behavior -- reuse, flatten, and remove, never redesign.
Style Consistency Checker
Check a diff against the conventions the rest of the codebase already follows -- inferred from existing code, not an external style guide.