원클릭으로
verifying-by-consensus
Dispatch N independent review agents, collate by consensus ratio, cross-check exclusive findings
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Dispatch N independent review agents, collate by consensus ratio, cross-check exclusive findings
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when executing multi-step processes requiring state persistence and agent coordination - defines two-tier protocol where subagents report PASS/FAIL status and main agent handles dispatch, advancement, and failure troubleshooting
Use when partner provides a complete implementation plan to execute in controlled batches with review checkpoints - loads plan, reviews critically, executes tasks in batches, reports for review between batches
Algorithmic decision tree for when to follow plan exactly vs when to report STOPPED - prevents scope creep and unauthorized deviations
Use when design is complete and you need detailed implementation tasks for engineers with zero codebase context - creates comprehensive implementation plans with exact file paths, complete code examples, and verification steps assuming engineer has minimal domain knowledge
| name | verifying-by-consensus |
| description | Dispatch N independent review agents, collate by consensus ratio, cross-check exclusive findings |
| workflow | verify.runbook.md |
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