assessment: independent Tier-S verification, ratification ceremony, local-first CI runner (recovered from cloud session) #113

Merged
core-labs merged 10 commits from claude/core-architecture-assessment-recovered into main 2026-07-25 21:11:17 +00:00
2 changed files with 7 additions and 0 deletions
Showing only changes of commit bec76d4889 - Show all commits

View file

@ -17,7 +17,13 @@ class CaseResult:
versor_closure: bool
versor_condition: float
trace_hash: str
#: The SERVED surface — register-decorated, what the user reads.
surface: str
#: The register-INVARIANT truth-path bytes that ``compute_trace_hash``
#: folds (ADR-0069 inv C). A different field with a different contract:
#: ``surface`` is *expected* to vary across the register axis, this is
#: *required* not to. Defaulted so older constructors stay valid.
hash_surface: str = ""
@dataclass(slots=True)

View file

@ -65,6 +65,7 @@ def _run_case(case: dict, pipeline: CognitiveTurnPipeline) -> CaseResult:
versor_condition=result.versor_condition,
trace_hash=result.trace_hash,
surface=result.surface,
hash_surface=result.hash_surface or result.surface,
)