What problem does it solve?
It prevents premature completion of behavior-impacting code changes by enforcing a risk-tiered, independent final review of the complete task diff before final verification, catching contract, concurrency, security, and compatibility defects that self-review misses.
Core Features & Use Cases
- Deterministic Review State Fingerprinting: Computes combined, per-component, and repository content fingerprints from the merge-base three-dot diff, including untracked task-owned files, so reviewers audit exactly one frozen state.
- Independent Two-Reviewer Protocol: Dispatches two reviewers without inherited conversation history, validates their structured JSON outputs against an exact schema, and tracks findings by stable root-cause IDs in a task-global ledger.
- Component-Aware Clean Credit: Partitions the diff into semantic components (e.g., public-api, session-persistence, provider-adapters) so unchanged components keep clean credit while changed ones get delta reviews.
- Use Case: After implementing a change to the OpenAI Agents SDK that touches session persistence, run this review to build a reviewer packet, dispatch two independent reviewers on the frozen fingerprint, and only then run the full build and test gates.
Quick Start
Use $implementation-final-review to audit this implementation from first principles before calling it complete.