Help us improve
Share bugs, ideas, or general feedback.
From quorum
Row-level merger for RTM files from multiple git worktrees into a base RTM. Detects conflicts on Req ID × File keys, applies single-source updates, appends new rows from parallel workers.
npx claudepluginhub berrzebb/quorum --plugin quorumHow this agent operates — its isolation, permissions, and tool access model
Agent reference
quorum:agents/knowledge/references/consensus-tools/rtm-mergeThe summary Claude sees when deciding whether to delegate to this agent
Row-level merge of multiple worktree RTM files into a base RTM. Detects conflicts, applies updates, appends discovered rows. - After parallel workers complete — merge their RTM updates back to main - Before squash merge — consolidate worktree RTMs into the base - Orchestrator workflow — combine scout/implementer RTM contributions | Param | Required | Default | Description | |-------|----------|...
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.
Row-level merge of multiple worktree RTM files into a base RTM. Detects conflicts, applies updates, appends discovered rows.
| Param | Required | Default | Description |
|---|---|---|---|
--base | Yes | — | Path to the base RTM file (main repo) |
--updates | Yes | — | JSON array of paths to worktree RTM files |
# Merge two worktree RTMs
quorum tool rtm_merge \
--base docs/plan/track-1/rtm.md \
--updates '["../wt-worker-1/docs/plan/track-1/rtm.md","../wt-worker-2/docs/plan/track-1/rtm.md"]'
# JSON output for programmatic use
quorum tool rtm_merge \
--base docs/rtm.md \
--updates '["wt1/rtm.md"]' \
--json
Rows are keyed by Req ID × File:
Shows both versions for manual resolution:
- **EV-1.1|src/bus.ts**: modified by `wt1/rtm.md` and `wt2/rtm.md`
- Source 1: | EV-1.1 | ... | fixed |
- Source 2: | EV-1.1 | ... | verified |
Tables showing what changed and where it came from.
The complete merged table — can be written directly to the base file.
{
"total": 45,
"updated": 8,
"added": 3,
"conflicts": 1
}