Dispatch N independent review agents, collate by consensus ratio, cross-check exclusive findings
/plugin marketplace add tobyhede/turboshovel/plugin install tobyhede-turboshovel-plugin@tobyhede/turboshovelThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Dispatch N agents to independently review the same subject. Collate findings:
| Scope | Default N | Rationale |
|---|---|---|
| Single file change | 2 | Focused review, two perspectives sufficient |
| Multi-file feature | 2-3 | More surface area benefits from diversity |
| Architecture change | 3 | Different perspectives valuable |
| Security-sensitive | 3+ | Higher stakes warrant more eyes |
Override via args: --count 3 or --agents "Explore,Plan,code-agent"
--agents, use thoseAnnounce: "I'm using the verifying-by-consensus skill to verify [subject]."
tsv run runbooks/verify.runbook.mdStep(description="1.1 - Review [subject]", prompt="...", subagent_type="...")
Step(description="1.2 - Review [subject]", prompt="...", subagent_type="...")
Hooks automate step binding:
| Manual command | Hook trigger | When |
|---|---|---|
tsv run --step 1.1 | PostToolUse (Step) | StepId detected in description |
tsv run --agent {id} | SubagentStart | Agent spawns |
Subagent protocol:
.work/{date}-verify-{agentId}.mdSTATUS: PASS or STATUS: FAILAfter all agents complete, dispatch collation:
.work/{date}-verify-collated.mdPresent immediately:
Collation complete.
## Common (N/N)
[Issues all agents found - can implement now]
## Exclusive
### (N-1)/N
[Issues most agents found]
### 1/N
[Issues one agent found]
Cross-check starting for exclusive findings...
Dispatch cross-check agent to validate ALL exclusive findings:
.work/{date}-verify-crosscheck.mdPresent when complete:
Cross-check complete.
VALIDATED: X issues (should address)
INVALIDATED: X issues (can skip)
UNCERTAIN: X issues (user decides)
tsv complete
All files saved to .work/:
{date}-verify-{agentId}.md - Individual reviews{date}-verify-collated.md - Collation report{date}-verify-crosscheck.md - Cross-check resultsReview template: ${CLAUDE_PLUGIN_ROOT}templates/verify-review.md
Collation template: ${CLAUDE_PLUGIN_ROOT}templates/verify-collation.md