What problem does it solve?
In multi-agent CCB workflows, a Coder agent must not declare its own work complete; this Skill enforces a disciplined handoff where one assigned Reviewer validates each node result before the Coder can finish.
Core Features & Use Cases
- Bounded Review Submission: Sends the node result to the single assigned Reviewer using
command ask --chain --artifact-reply with a structured work packet including allowed paths, acceptance refs, and verification results.
- Machine-Readable Status Protocol: Requires the Reviewer's first reply line to be exactly
status: pass, status: rework_required, status: blocked, or status: non_converged, mapping each to a Coder terminal state (done, blocked, needs_rework).
- Strict Boundaries: Forbids polling, plain ask, multiple targets, self-claiming done, commits, or releasing agents.
- Use Case: A Coder agent finishes implementing a node in an agentic loop workflow, submits the change set and verification output to its assigned Reviewer, applies bounded repairs on rework requests, and only returns
done after an explicit pass.
Quick Start
Submit my completed node result to the assigned Reviewer using the chained review command and wait for a pass, rework, blocked, or non-converged status before finishing.