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
Copy file name to clipboardExpand all lines: SPEC.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -470,7 +470,7 @@ Quorum is built on these peer-reviewed papers:
470
470
---
471
471
472
472
**Quorum is a production-oriented, early-stage validation framework.**
473
-
*Architecture is sound and tested, but the product is still growing: 4/9 critics shipped, trust/monitoring systems specified but not wired; learning memory and fix re-validation shipped in v0.5.3.*
473
+
*Architecture is sound and tested, with 6 critics shipped (5 callable in the pipeline), learning memory, fix re-validation, and batch processing all production-ready. Trust and monitoring systems are specified but not yet wired.*
Copy file name to clipboardExpand all lines: docs/CHANGELOG.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,22 @@ All notable changes to Quorum will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
6
7
+
## [0.6.1] — 2026-03-11
8
+
9
+
### Changed
10
+
-**Confidence scores replaced with criteria coverage.** Verdicts now report "Coverage: N% of criteria evaluated" with per-critic criteria counts (`criteria_evaluated` / `criteria_total`) instead of fabricated confidence percentages. The previous formula (`0.5 + ratio × 0.45`) always returned ~0.95 since evidence non-emptiness was already enforced upstream — the number was decorative. Coverage counts are honest and verifiable.
11
+
-**Aggregator confidence** now computes total criteria evaluated across all critics rather than averaging per-critic scores with skip penalties and agreement bonuses.
12
+
-**Report output** shows "N/M criteria" per file and "Coverage: N% of criteria evaluated" in batch and single-file reports. Fixer proposal confidence (LLM self-assessed) is unchanged — it's a legitimately different concept.
13
+
-`CriticResult` model gains `criteria_total` and `criteria_evaluated` fields.
14
+
15
+
### Fixed
16
+
-**SPEC.md** status summary updated to reflect 6 shipped critics (was still showing "4/9" from v0.5.x).
17
+
-**IMPLEMENTATION.md** status header updated to v0.6.0 with correct critic count and pointer to `critic-status.yaml` as authoritative source.
18
+
19
+
### Tooling
20
+
-**`validate-docs.py` enhanced**: version consistency checks across all doc files, depth config validation against `critic-status.yaml`, fraction pattern detection (DEC-019: no exposed denominators for critic counts), callable vs shipped distinction.
21
+
-**`critic-status.yaml` extended**: `callable` flag (shipped vs invocable in pipeline), `spec_version`, `depth_configs` per depth profile.
Copy file name to clipboardExpand all lines: docs/IMPLEMENTATION.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
This guide walks through building Quorum from the architectural spec. It's structured as a reference walkthrough, not a copy-paste tutorial. The goal is understanding the patterns so you can adapt them to your stack.
4
4
5
-
> **Implementation Status (v0.5.2):** This guide describes the full target architecture. The reference implementation ships 4/9 critics, the fixer (proposal mode), parallel execution, and pre-screen integration. Sections marked 🔜 describe planned components. See `SPEC.md §3` for the authoritative status matrix.
5
+
> **Implementation Status (v0.6.0):** This guide describes the full target architecture. The reference implementation ships 6 critics (5 callable in the pipeline), the fixer (proposal mode), parallel execution, batch processing, and pre-screen integration. Sections marked 🔜 describe planned components. See `critic-status.yaml` for the authoritative status matrix.
0 commit comments