Three lane SHA pins drifted because intentional surface/serialization changes shipped without re-running scripts/verify_lane_shas.py --update. Bisect attributing the drift: - demo_composition + public_demo broke at5cad0a4(#118 ADR-0110 mathematics_logic → expert_demo) — the demos enumerate the expert set. - demo_composition drifted a second time atab4c7cb(#220 Phase 3 state tagging spine) — additional epistemic fields shifted the surface. - domain_contract_validation broke ata45eab1(#219 Phase 2 epistemic bug repairs) — normative/epistemic field shape changed. The in-tree canonical report for fabrication_control_summary was also stale vs. its (correct) pin; refreshed here for byte-alignment. After this commit: 7/7 lanes match pinned SHAs; verify_lane_shas.py runs green locally and in CI. Followup (separate PR): hook/template guard so future PRs that touch core/cognition/result.py, chat/runtime.py, or capability registries re-run --update before merge.
50 lines
3.1 KiB
Markdown
50 lines
3.1 KiB
Markdown
# CLAIMS
|
|
|
|
<!--
|
|
AUTO-GENERATED by scripts/generate_claims.py.
|
|
Do not hand-edit. Run `python3 scripts/generate_claims.py` to
|
|
regenerate after any change to the capability ledger or pinned
|
|
lane SHAs (scripts/verify_lane_shas.py).
|
|
-->
|
|
|
|
Every row below is mechanically derived from in-tree state and
|
|
verified by CI. Tier 1 rows come from `core.capability.ledger_report`;
|
|
Tier 2 rows come from `scripts/verify_lane_shas.py`'s pinned SHAs.
|
|
|
|
## Tier 1 — Ratified domains
|
|
|
|
Each row asserts: the domain's packs pass all nine ADR-0091 contract
|
|
predicates, declared operator chains meet the ≥8 / ≥3-intent floor,
|
|
the reviewer registry resolves the primary reviewer, and the ledger
|
|
status predicate evaluates to `reasoning-capable` with no open gaps.
|
|
|
|
| Domain | Status | ADR | Packs | Open gaps |
|
|
| --- | --- | --- | --- | --- |
|
|
| `philosophy_theology` | reasoning-capable | ADR-0085 | 2 | 0 |
|
|
| `mathematics_logic` | expert | ADR-0097 | 1 | 0 |
|
|
| `physics` | audit-passed | ADR-0100 | 1 | 0 |
|
|
| `systems_software` | audit-passed | ADR-0101 | 1 | 0 |
|
|
| `hebrew_greek_textual_reasoning` | reasoning-capable | ADR-0102 | 4 | 0 |
|
|
|
|
## Tier 2 — Pinned lane reports
|
|
|
|
Each row asserts: running the lane's runner produces a JSON
|
|
report whose SHA-256 matches the pinned value below. Mismatch
|
|
is a CI failure (`.github/workflows/lane-shas.yml`).
|
|
|
|
| ADR | Lane | Purpose | Report path | Pinned SHA-256 |
|
|
| --- | --- | --- | --- | --- |
|
|
| ADR-0092 | `reviewer_registry` | Reviewer registry schema validates + bootstrap entry self-seals | `evals/reviewer_registry/results/v1_dev.json` | `681a2aab5aa4ffd58cd837ce5673c8b2a9545b570117aec3c02726a12f6876e6` |
|
|
| ADR-0093 | `domain_contract_validation` | All ratified packs satisfy the 9 ADR-0091 contract predicates | `evals/domain_contract_validation/results/v1_dev.json` | `98ace04e3f02bbc5a8ad655bb6593c3f1ee64cb67014f1122fe6c3c85f48d22f` |
|
|
| ADR-0095 | `miner_loop_closure` | Miner-sourced proposals route through single reviewed teaching path | `evals/miner_loop_closure/results/v1_dev.json` | `9f071733abe7dcacf759f928548ce738fb639af3fd6e4c621a651b306d7e77ce` |
|
|
| ADR-0096 | `fabrication_control_summary` | Phantom endpoints / cross-pack non-bridges / sibling collapses refuse | `evals/fabrication_control/results/v1_summary.json` | `01e1b6b711141f2b4a14551d7df3ea482d8d6dd7b364a25c509f4f8d08cda8a8` |
|
|
| ADR-0098 | `demo_composition` | Demos compose from shipped modules; no parallel mechanism | `evals/demo_composition/results/v1_dev.json` | `403be13bd666389bdf1caa1b97382753e531ad72686c5237f64a5e23bc702ac4` |
|
|
| ADR-0099 | `public_demo` | Public showcase runs deterministically under 30s; all claims supported | `evals/public_demo/results/v1_dev.json` | `acd51d0c17948030aa2843309a3729c6f825959e2e0cbbc477e07de8269268a4` |
|
|
| ADR-0104 | `curriculum_loop_closure` | Curriculum-sourced proposals route through single reviewed teaching path | `evals/curriculum_loop_closure/results/v1_dev.json` | `b46d56b2d209172cc3ffaf3776dc8dcfe55093f13587c5cb67372be6dfa23e8d` |
|
|
|
|
## Verification
|
|
|
|
```bash
|
|
python3 scripts/verify_lane_shas.py # verify all Tier 2 SHAs
|
|
core test --suite full -q # exercises Tier 1 invariants
|
|
```
|