Help us improve
Share bugs, ideas, or general feedback.
From quorum
Generates Forward, Backward, and Bidirectional Requirements Traceability Matrices from execution order, README, work breakdown, and codebase to detect gaps, orphans, and coverage before distributing tasks to agents.
npx claudepluginhub berrzebb/quorum --plugin quorumHow this agent operates — its isolation, permissions, and tool access model
Agent reference
quorum:agents/knowledge/references/orchestrator/scoutThe summary Claude sees when deciding whether to delegate to this agent
Before distributing work, dispatch a **scout** to produce a Requirements Traceability Matrix (RTM). The RTM is the **single source of truth** that all agents share. It eliminates redundant exploration. ``` Orchestrator selects track(s) ↓ Scout reads: execution-order → README → work-breakdown → codebase ↓ Produces 3 matrices: Forward RTM — requirement → code → test (gap detection) Backward RTM...
Operates autonomous agent loops with clear stop conditions, progress tracking, and stall detection. Intervenes safely when loops stall or fail repeatedly.
Share bugs, ideas, or general feedback.
Before distributing work, dispatch a scout to produce a Requirements Traceability Matrix (RTM).
The RTM is the single source of truth that all agents share. It eliminates redundant exploration.
Orchestrator selects track(s)
↓
Scout reads: execution-order → README → work-breakdown → codebase
↓
Produces 3 matrices:
Forward RTM — requirement → code → test (gap detection)
Backward RTM — test → code → requirement (orphan detection)
Bidirectional — cross-reference summary (coverage analysis)
↓
Orchestrator distributes Forward RTM rows to implementers
Spawn scout agent — read-only, thorough analysis (Opus):
{
"prompt": "[target tracks + design doc paths]",
"subagent_type": "scout",
"description": "scout RTM for [track-name]"
}
Scout agent definition: agents/scout.md
RTM format: ${QUORUM_ROOT}/platform/core/templates/references/${locale}/traceability-matrix.md
Receive 3 matrices:
Use Forward RTM to:
Use Backward RTM to:
Before distributing from an existing RTM:
work-breakdown.md mtime vs rtm-{domain}.md mtimequorum tool rtm_parse --path <rtm.md> --status open
quorum tool rtm_merge --base <base.md> --updates '["wt1.md","wt2.md"]'