What problem does it solve? First-pass implementations often hide bugs, dead code, and unnecessary complexity that the original author overlooks. This Skill performs a disciplined second-pass review of changed code, tracing behavior end to end before fixing the smallest complete set of confirmed issues. ## Core Features & Use Cases - Fresh-Eyes Review: Re-examines the diff, callers, tests, and contracts as if the reviewer did not write the code, questioning every line. - Edge-Case Tracing: Follows inputs through validation, error handling, concurrency, and failure paths, including empty, malformed, and boundary inputs. - Minimal Verified Fixes: Fixes concrete issues with the smallest safe change, adds regression tests where a test seam exists, and verifies with focused and broader test runs. - Use Case: After implementing a new API endpoint, ask for a second-pass review to catch a missing null check and an unused parameter, then have them fixed and covered by a regression test. ## Quick Start Ask the assistant to do a fresh-eyes double-check of the code changes you just made for bugs and unnecessary complexity.