What problem does it solve? Self-reviewing your own code changes is biased by author intent, so defects slip through before a PR is opened. This Skill delegates the diff to a separate read-only reviewer agent, triages the findings, fixes valid issues, and re-reviews until the pass is clean. ## Core Features & Use Cases - Unbiased Diff Review: Captures the branch diff or uncommitted changes plus recent commit history, then passes them to a read-only code-reviewer subagent that cannot be influenced by the author's intent. - Triage and Fix Loop: Classifies each finding as Blocker, Should-fix, Nit, or Invalid, fixes valid issues, reruns tests and lint, and never weakens tests to silence a finding. - Fixed-Point Re-Review: Launches fresh review passes on the updated diff, capped at three passes, and reports anything deliberately deferred. - Use Case: Before opening a PR, ask for a review of your branch; the Skill flags an off-by-one error and duplicated logic, fixes both, reruns the test suite, and confirms a clean second pass. ## Quick Start Ask the assistant to peer review your current branch changes before opening a pull request.