Code Review prompts
Reviews for correctness, security and style.
Senior Engineer Code Review
A staff-level code review that separates blocking issues from nitpicks, explains the why behind every finding, and suggests concrete fixes.
Security-Focused Code Review (OWASP Top 10)
Audits code specifically against the OWASP Top 10 with severity ratings, proof-of-concept attack scenarios, and hardened replacement code.
Two-Pass Pull Request Review
Reviews a diff in two deliberate passes — architecture and approach first, then line-level detail — so big problems surface before small ones.
Silent Failure & Error-Handling Audit
Audits code for the failures that page you at 2am: swallowed exceptions, ignored return values, missing timeouts, and partial writes that leave state corrupted.
Bug-Only Diff Review (Zero Style Comments)
A review mode that reports nothing but genuine defects — every finding must name the input or sequence of events that triggers wrong behavior, or it does not get reported.
Architecture Review — Boundaries & Coupling
Reviews a codebase at the module level instead of line level: dependency direction, leaky abstractions, god modules, and the two or three seams worth fixing first.