From quorum
Validates task scopes for conflicts before spawning up to 3 parallel subagents in isolated worktrees. Serializes overlaps, verifies closures, and enables safe multi-module task distribution.
npx claudepluginhub berrzebb/quorum --plugin quorumBefore parallel distribution, verify no scope conflicts: 1. **Estimate file scope**: Extract target files/directories from each task's description 2. **Detect overlap**: If the same file appears in 2+ tasks → **serialize** them 3. **Directory-level conflict**: Tasks touching the same directory → warn 4. **Safe parallel**: Only tasks touching different modules/directories run in parallel Issue m...
Fills Nyquist validation gaps by generating runnable behavioral tests for phase requirements, running them adversarially, debugging failures (max 3 iterations), verifying coverage, and escalating blockers.
Share bugs, ideas, or general feedback.
Before parallel distribution, verify no scope conflicts:
Issue multiple Agent tool calls in a single message:
// Agent tool call 1
{
"prompt": "[task-A context + handoff section + done-criteria]",
"subagent_type": "quorum:implementer",
"isolation": "worktree",
"run_in_background": true,
"description": "implement task-A"
}
// Agent tool call 2 (same message)
{
"prompt": "[task-B context + handoff section + done-criteria]",
"subagent_type": "quorum:implementer",
"isolation": "worktree",
"run_in_background": true,
"description": "implement task-B"
}
run_in_background: true — orchestrator is freed immediatelyagentId in handoff on returnBefore declaring any track "done" in the handoff:
dependency_graph must show actual import edges for every ✅ row| Status | Meaning | Track Closable? |
|---|---|---|
| ⚠️ partial-impl | Core logic exists, minor gaps | Yes, if gaps are in Residual Risk |
| 🔌 partial-wiring | Code exists but disconnected (no import) | No — wiring is required |
partial-wiring rows MUST be resolved before track closure.