What problem does it solve? Work handed off from a Kanban implementation lane to the review lane needs an independent verdict before completion, but rubber-stamping handoff summaries or letting reviewers edit the deliverable weakens quality control. This Skill enforces a structured, evidence-based review process with clear verdict routing. ## Core Features & Use Cases - Independent Verification: Reads the task record via kanban_show, inspects the actual deliverable, and runs builds, tests, and lint checks before deciding. - Round-Based Review Lenses: Varies inspection strategy per review round (artifact cold-read, execution-based verification, strict contract audit) to catch different defect classes. - Verdict Routing: Approves with kanban_complete, returns correctable defects with kanban_request_changes, or escalates human decisions with kanban_block, always with concrete evidence. - Use Case: A dispatcher spawns a reviewer for a task in the review lane; the Skill guides the reviewer to map every acceptance criterion to evidence, re-test prior requested changes, and record a single terminal verdict without editing the implementation. ## Quick Start Review the current Kanban task in the review lane by reading its handoff with kanban_show, verifying the deliverable against the acceptance criteria, and submitting an approve, request-changes, or escalate verdict with evidence.