You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Quorum self-validation doc fixes — critic count, cost, Fixer history
Found and fixed via thorough Quorum self-validation of README, SPEC, CHANGELOG, SEC02:
README:
- Fix inconsistent thorough-depth cost ($2.00+ → $1.50+ in comparison table)
SPEC:
- §1: Update implemented critic count to 5 (Cross-Artifact Consistency is
also implemented, not just the 4 main critics)
- §1: Correct planned count to 4 (Architecture, Delegation, Style, Tester)
- §2.5: Remove stale version annotation "(v0.5.1)" from depth table header
- §8/§10: Align remaining-critics count with updated §1
CHANGELOG:
- [0.5.0] roadmap: Correct Fixer as not-yet-done in that release; proposal
mode shipped as NEW in [0.5.1], re-validation loops in [0.5.3]
Code (pre-existing changes, now committed):
- relationships.py: Remove unused base_dir param from load_manifest()
- pipeline.py: Update two call sites accordingly
- utils.py: Correct docstring (compact_match regex, no DOTALL)
- test_relationships.py: Update tests to match new load_manifest() signature
Tests: 796 passed, 0 failed.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
| Reviews only one file at a time |**Batch validation** — run across a whole directory, or by `--pattern "*.md"`. One command, one verdict per file |
56
56
| Each file judged in isolation |**Cross-artifact consistency** — I check whether your files actually agree with each other via a relationships manifest |
57
-
| Same effort whether it's a quick sanity check or a full audit | I scale: **quick** ($0.15), **standard** ($0.50), **thorough** ($2.00+) |
57
+
| Same effort whether it's a quick sanity check or a full audit | I scale: **quick** ($0.15), **standard** ($0.50), **thorough** ($1.50+) |
58
58
| Each review starts from zero | I **learn patterns over time** — recurring findings auto-promote to mandatory checks via `known_issues.json`|
59
59
60
60
Single agent, multi-agent swarm, hundred-step pipeline — doesn't matter how it was built. If it produced an output, I can tell you whether it holds up.
Copy file name to clipboardExpand all lines: SPEC.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
10
10
## 1. Overview
11
11
12
-
Quorum is a quality assurance framework with a nine-agent target architecture. Currently, 4 critics are implemented (Correctness, Completeness, Security, Code Hygiene), with 5 additional critics planned. The framework is designed to rigorously evaluate multi-agent systems, configurations, research, code, and operational procedures against domain-specific rubrics. It combines:
12
+
Quorum is a quality assurance framework with a nine-agent target architecture. Currently, 5 critics are implemented (Correctness, Completeness, Security, Code Hygiene, and Cross-Artifact Consistency), with 4 additional critics planned. The framework is designed to rigorously evaluate multi-agent systems, configurations, research, code, and operational procedures against domain-specific rubrics. It combines:
13
13
14
14
-**Parallel specialized critics** (9 agents with distinct expertise)
15
15
-**Grounded evidence requirement** (every critique must cite tool-verified proof)
@@ -100,7 +100,7 @@ High-frequency patterns automatically promote to mandatory checks in future runs
100
100
101
101
Three execution profiles balance rigor, speed, and cost:
102
102
103
-
| Depth | Critics (v0.5.1) | Fix Loops | Runtime | Use Case |
103
+
| Depth | Critics | Fix Loops | Runtime | Use Case |
|**quick**| Correctness, Completeness | 0 | 5-10 min | Fast feedback; low stakes |
106
106
|**standard**| + Security, Code Hygiene | 0 | 15-30 min | Most work; default |
@@ -416,7 +416,7 @@ Status as of v0.5.0 (reference implementation):
416
416
- [x] Fixer agent — proposal mode + re-validation loops (Phase 1.5; proposes and applies text replacements for CRITICAL/HIGH, then re-runs critics to verify)
0 commit comments