From quorum
Syncs L3 design docs: updates work breakdown statuses via git diffs on first-touch files and test existence checks, regenerates work-catalog.md tables/summaries, refreshes PRD track maps.
npx claudepluginhub berrzebb/quorum --plugin quorum- `{planning_dir}` directory must exist - At least one of: PRD.md, work-breakdown.md, work-catalog.md - If none exist → skip L3 entirely ``` For each WB item (### {TRACK}-N): 1. Extract "First touch files" list 2. git diff {base}..HEAD --name-only → check if those files were changed 3. Check test file existence (from "Done" criteria) 4. Determine status: - All first-touch files changed + test f...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.
{planning_dir} directory must existFor each WB item (### {TRACK}-N):
1. Extract "First touch files" list
2. git diff {base}..HEAD --name-only → check if those files were changed
3. Check test file existence (from "Done" criteria)
4. Determine status:
- All first-touch files changed + test files exist → done
- Some files changed → in-progress
- No files changed → keep current status
| Current | Condition | New Status |
|---|---|---|
open / blocked | All files changed + tests exist | done |
open / blocked | Some files changed | in-progress |
in-progress | All files changed + tests exist | done |
done | — | No change (already complete) |
blocked | Dependency WB became done | open (blocker resolved) |
done — partial is in-progressin-progress (not done)When WB status changes, update work-catalog.md:
Summary numbers are counted from the All Items rows directly — never trust existing numbers.
Aggregate WB status within each track → update Track Map Status:
| Condition | Track Status |
|---|---|
All WBs are done | done |
Any WB is in-progress | in-progress |
All WBs are open / blocked | planned |
| Deprecated track | No change |
# Diff against base branch
git diff {base}..HEAD --name-only
# File existence checks
# Use Glob for first-touch files and test files
# Code analysis (optional, for deeper verification)
quorum tool code_map --path {track_dir} --json
quorum tool coverage_map --path {track_dir} --json