What problem does it solve? Work handed off from a Kanban implementation lane to a review lane needs an independent verdict before it can be completed, but rubber-stamping handoff summaries or letting reviewers edit the deliverable weakens quality control. This Skill enforces an independent, evidence-based review process with clear terminal outcomes. ## Core Features & Use Cases - Independent Verification: Reads the task record via kanban_show, inspects the actual deliverable, and runs focused tests, lint, or builds before deciding. - Structured Verdicts: Routes each review to exactly one outcome — approve with kanban_complete, request changes with kanban_request_changes, or escalate with kanban_block. - Round-Based Review Lenses: Varies inspection strategy per round (artifact cold-read, execution-based verification, contract audit) to catch different defect classes across re-reviews. - Use Case: A dispatcher spawns a reviewer for a task in the review lane after an implementer submits a review_requested handoff; the reviewer checks out the code, runs the project's tests, maps every acceptance criterion to evidence, and either approves with documented checks or returns actionable findings to the implementer. ## 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 recording an approve, request-changes, or escalate verdict.