From 35fa5539da0f0df5bc0494421cbc57098637ad4f Mon Sep 17 00:00:00 2001 From: Jake Date: Thu, 20 Aug 2026 17:10:50 -0400 Subject: [PATCH 1/2] research: add From Model Output to Accepted State owner-review packet Draft PR surface only. Per BOUNDARIES.md, a draft PR, branch, commit, or passing verifier does not authorize merge, release tagging, DOI registration, or deployment. Self-contained and zero dependency. Verified with tools/verify_release.py and tools/verify-release.mjs, which agree across languages on the payload root. Co-Authored-By: Claude Opus 5 --- .../.gitattributes | 5 + .../BOUNDARIES.md | 41 + .../CHANGELOG.md | 42 + .../CITATION.cff | 27 + .../LICENSE.txt | 20 + .../README.md | 68 + .../RELATED-WORK.md | 23 + .../REPRODUCE.md | 90 ++ .../author-markers.json | 653 ++++++++ .../claims.json | 1394 +++++++++++++++++ .../content_a.py | 388 +++++ .../content_b.py | 453 ++++++ .../content_c.py | 1111 +++++++++++++ .../evidence/RELEASE-BUILD-RECEIPT-000001.md | 60 + .../evidence/RELEASE-BUILD-RECEIPT-000002.md | 141 ++ .../evidence/RELEASE-BUILD-RECEIPT-000003.md | 143 ++ .../evidence/RELEASE-BUILD-RECEIPT-000004.md | 138 ++ .../evidence/blind-prompt/PROMPT.md | 39 + .../evidence/blind-prompt/PUBLIC-SUMMARY.md | 41 + .../device-activation/BUILD-RECEIPT-000001.md | 83 + .../device-activation/expected-analysis.json | 1 + .../editorial-review/PUBLIC-DISPOSITION.md | 85 + .../BUILD-RECEIPT-000005.md | 95 ++ .../lean-query-quotient/QueryQuotient.lean | 105 ++ .../reproduction/WINDOWS-CLEAN-CLONE-V3.md | 98 ++ .../BUILD-RECEIPT-000001.md | 95 ++ .../expected-report.json | 1 + .../figures.py | 551 +++++++ .../figures/fig1-boundary.svg | 1 + .../figures/fig2-lifecycle.svg | 1 + .../figures/fig3-stores.svg | 1 + .../figures/fig4-signals.svg | 1 + .../figures/fig5-repair.svg | 1 + ...Accepted-State-Owner-Review-v4-LinkedIn.md | 830 ++++++++++ ...tput-to-Accepted-State-Owner-Review-v4.pdf | Bin 0 -> 996152 bytes .../release-manifest.json | 309 ++++ .../reviewer-markers.template.json | 442 ++++++ .../style.py | 321 ++++ .../tools/update_claim_register.py | 610 ++++++++ .../tools/update_manifest.py | 100 ++ .../tools/verify-release.mjs | 238 +++ .../tools/verify.ps1 | 50 + .../tools/verify_release.py | 288 ++++ 43 files changed, 9184 insertions(+) create mode 100644 research/from-model-output-to-accepted-state/.gitattributes create mode 100644 research/from-model-output-to-accepted-state/BOUNDARIES.md create mode 100644 research/from-model-output-to-accepted-state/CHANGELOG.md create mode 100644 research/from-model-output-to-accepted-state/CITATION.cff create mode 100644 research/from-model-output-to-accepted-state/LICENSE.txt create mode 100644 research/from-model-output-to-accepted-state/README.md create mode 100644 research/from-model-output-to-accepted-state/RELATED-WORK.md create mode 100644 research/from-model-output-to-accepted-state/REPRODUCE.md create mode 100644 research/from-model-output-to-accepted-state/author-markers.json create mode 100644 research/from-model-output-to-accepted-state/claims.json create mode 100644 research/from-model-output-to-accepted-state/content_a.py create mode 100644 research/from-model-output-to-accepted-state/content_b.py create mode 100644 research/from-model-output-to-accepted-state/content_c.py create mode 100644 research/from-model-output-to-accepted-state/evidence/RELEASE-BUILD-RECEIPT-000001.md create mode 100644 research/from-model-output-to-accepted-state/evidence/RELEASE-BUILD-RECEIPT-000002.md create mode 100644 research/from-model-output-to-accepted-state/evidence/RELEASE-BUILD-RECEIPT-000003.md create mode 100644 research/from-model-output-to-accepted-state/evidence/RELEASE-BUILD-RECEIPT-000004.md create mode 100644 research/from-model-output-to-accepted-state/evidence/blind-prompt/PROMPT.md create mode 100644 research/from-model-output-to-accepted-state/evidence/blind-prompt/PUBLIC-SUMMARY.md create mode 100644 research/from-model-output-to-accepted-state/evidence/device-activation/BUILD-RECEIPT-000001.md create mode 100644 research/from-model-output-to-accepted-state/evidence/device-activation/expected-analysis.json create mode 100644 research/from-model-output-to-accepted-state/evidence/editorial-review/PUBLIC-DISPOSITION.md create mode 100644 research/from-model-output-to-accepted-state/evidence/lean-query-quotient/BUILD-RECEIPT-000005.md create mode 100644 research/from-model-output-to-accepted-state/evidence/lean-query-quotient/QueryQuotient.lean create mode 100644 research/from-model-output-to-accepted-state/evidence/reproduction/WINDOWS-CLEAN-CLONE-V3.md create mode 100644 research/from-model-output-to-accepted-state/evidence/transition-stable-quotient/BUILD-RECEIPT-000001.md create mode 100644 research/from-model-output-to-accepted-state/evidence/transition-stable-quotient/expected-report.json create mode 100644 research/from-model-output-to-accepted-state/figures.py create mode 100644 research/from-model-output-to-accepted-state/figures/fig1-boundary.svg create mode 100644 research/from-model-output-to-accepted-state/figures/fig2-lifecycle.svg create mode 100644 research/from-model-output-to-accepted-state/figures/fig3-stores.svg create mode 100644 research/from-model-output-to-accepted-state/figures/fig4-signals.svg create mode 100644 research/from-model-output-to-accepted-state/figures/fig5-repair.svg create mode 100644 research/from-model-output-to-accepted-state/paper/From-Model-Output-to-Accepted-State-Owner-Review-v4-LinkedIn.md create mode 100644 research/from-model-output-to-accepted-state/paper/From-Model-Output-to-Accepted-State-Owner-Review-v4.pdf create mode 100644 research/from-model-output-to-accepted-state/release-manifest.json create mode 100644 research/from-model-output-to-accepted-state/reviewer-markers.template.json create mode 100644 research/from-model-output-to-accepted-state/style.py create mode 100644 research/from-model-output-to-accepted-state/tools/update_claim_register.py create mode 100644 research/from-model-output-to-accepted-state/tools/update_manifest.py create mode 100644 research/from-model-output-to-accepted-state/tools/verify-release.mjs create mode 100644 research/from-model-output-to-accepted-state/tools/verify.ps1 create mode 100644 research/from-model-output-to-accepted-state/tools/verify_release.py diff --git a/research/from-model-output-to-accepted-state/.gitattributes b/research/from-model-output-to-accepted-state/.gitattributes new file mode 100644 index 0000000..80494f3 --- /dev/null +++ b/research/from-model-output-to-accepted-state/.gitattributes @@ -0,0 +1,5 @@ +* -text + +evidence/blind-prompt/PROMPT.md whitespace=-blank-at-eof +evidence/device-activation/BUILD-RECEIPT-000001.md whitespace=-blank-at-eof +paper/From-Model-Output-to-Accepted-State-Owner-Review-v4-LinkedIn.md whitespace=-trailing-space diff --git a/research/from-model-output-to-accepted-state/BOUNDARIES.md b/research/from-model-output-to-accepted-state/BOUNDARIES.md new file mode 100644 index 0000000..2865f46 --- /dev/null +++ b/research/from-model-output-to-accepted-state/BOUNDARIES.md @@ -0,0 +1,41 @@ +# Claim and reuse boundaries + +This file is load-bearing. A result copied from this packet should retain the relevant boundary. + +## What the checks establish + +- The files match the byte lengths and SHA-256 digests in `release-manifest.json`. +- The retained JSON reports parse and remain byte-identical to the audited local outputs. +- The paper outputs passed the local structure, visual, and privacy checks recorded in `evidence/RELEASE-BUILD-RECEIPT-000004.md`. The dependency-bearing validator used for those preparation checks is not included in this zero-dependency public packet. +- The finite fixture results are exact for the frozen records, events, queries, candidate fields, equality rules, and implementations named in their reports. +- `evidence/editorial-review/PUBLIC-DISPOSITION.md` records the owner's minimized editorial decisions and the supplied private source's byte identity. It does not authenticate the reviewer attribution or promote review assertions into evidence. + +## What the checks do not establish + +- scientific peer review, independent replication, mathematical novelty, or publication acceptance; +- truth of source assertions, trusted time, authorship identity, causal validity, or authority; +- production safety, security, privacy compliance, legal compliance, or fitness for a particular deployment; +- a universal minimal state, universal proof canonicalizer, optimal policy, or complete literature review; +- that a probability forecast is an outcome, that one resolved case establishes calibration, or that agent agreement is evidence of external truth; +- that requested model labels in the frozen-oracle packet attest the runtime model, seed, sampling process, or independence of the responses; +- that the private editorial review is evidence, authorship, peer review, source truth, or independent validation. +- that retained-source IDs expose or reproduce the corresponding private bytes. + +## Vocabulary crosswalk + +- **Output**: a produced representation awaiting qualification. It is not yet an outcome. +- **Outcome**: a later qualified observation about what occurred under a declared resolution rule. +- **UNRESOLVED**: a condition result in the paper. It does not silently become PASS. +- **HOLD**: a proposed operational disposition for unresolved required conditions. +- **Frozen-oracle packet**: BP-001, whose oracle and semantic rubric were fixed before collection and withheld from responders. The legacy `evidence/blind-prompt/` path is retained for receipt continuity. The term does not imply blinded assignment or blinded assessment. +- **BLOCK**: the execution result tested for BP-001's frozen `HOLD` value. BP-001 did not itself test the paper's `UNRESOLVED -> HOLD` crosswalk. +- **Accepted state**: the projection produced by the declared reducer from accepted events under pinned policy. It is not the entire world state. + +## Publication boundary + +This directory is prepared for a draft pull request. A draft PR, branch, commit, or passing verifier does not authorize merge, release tagging, DOI registration, deployment, or a claim that the owner has accepted every semantic mapping. + +The private editorial review and its locator remain outside the public packet. +Only the minimized owner disposition is authorized for this review surface. +Absolute local-machine paths, attachment locators, workspace-only paths, raw review +text, and private prompt responses are outside the publication boundary. diff --git a/research/from-model-output-to-accepted-state/CHANGELOG.md b/research/from-model-output-to-accepted-state/CHANGELOG.md new file mode 100644 index 0000000..66dbc2d --- /dev/null +++ b/research/from-model-output-to-accepted-state/CHANGELOG.md @@ -0,0 +1,42 @@ +# Owner-review revision lineage + +This changelog describes the public owner-review packet. Historical receipts remain +unchanged; each later receipt names its predecessor. + +## 0.1.0-owner-review.1 + +- Initial minimized public paper packet. +- Added authored source, figures, bounded evidence, license, boundaries, manifest, + and separate Python and JavaScript release verifiers. +- Receipt: `evidence/RELEASE-BUILD-RECEIPT-000001.md`. +- PDF SHA-256: `1707ffab851bc963a2874a6303c1e2d2aa5c9db2e262343d921f9d7df839b4ca`. + +## 0.1.0-owner-review.2 + +- Dispositioned private editorial feedback without publishing the raw review. +- Calibrated the diagnostic-count, refusal-arm, response-packet, operator-threat, + non-stale-label, and source-location language. +- Added LinkedIn document compatibility checks and a complete 35-page visual pass. +- Receipt: `evidence/RELEASE-BUILD-RECEIPT-000002.md`. +- PDF SHA-256: `019e372263176cb693e00a2be548c5f0dfb04c5027cb78b1f107070fc2e1afc4`. + +## 0.1.0-owner-review.3 + +- Separated the auditability contribution from unsupported-claim accuracy results. +- Added exploratory pairwise Fisher values with their clustering ceiling. +- Added the exact standalone Lean query-quotient source and compile receipt. +- Gave revised outputs a distinct v3 filename and repeated visual, technical, + privacy, and release-packet checks. +- Receipt: `evidence/RELEASE-BUILD-RECEIPT-000003.md`. +- PDF SHA-256: `26e7f35e5e4fb125ba4339d0179cccf662d5d0fcbf09d8e27693b3b74fb0767c`. + +## 0.1.0-owner-review.4 + +- Standardized BP-001 as the frozen-oracle packet while retaining its legacy path + for receipt continuity. +- Added the explicit Lean chronology and clean-room reproduction boundary. +- Added packet-local line-ending protection and a clean-clone runbook. +- Added a marker-blind claim register, separate author key, and external-review + template so demotion test 6 can be executed. +- Added this in-document and packet-level revision lineage. +- Final output digests are recorded in release receipt 000004. diff --git a/research/from-model-output-to-accepted-state/CITATION.cff b/research/from-model-output-to-accepted-state/CITATION.cff new file mode 100644 index 0000000..3127ed1 --- /dev/null +++ b/research/from-model-output-to-accepted-state/CITATION.cff @@ -0,0 +1,27 @@ +cff-version: 1.2.0 +message: "If you use or build on this owner-review release, cite the exact version or commit and retain its stated limitations." +title: "From Model Output to Accepted State" +type: report +authors: + - family-names: Tiller + given-names: Jake +version: "0.1.0-owner-review.4" +date-released: 2026-08-15 +license: CC-BY-4.0 +repository-code: "https://github.com/JakeTOpenSource/Resilience-Ledger" +url: "https://github.com/JakeTOpenSource/Resilience-Ledger/tree/main/research/from-model-output-to-accepted-state" +abstract: >- + Owner-review draft of a typed boundary from probabilistic model output to + accepted state, with deterministic replay, finite query-sufficiency and + transition-refinement fixtures, and a separately audited probabilistic + forecast lane. The packet includes bounded local evidence and offline + integrity verification; it is not an independent validation or deployment + authorization. +keywords: + - state transition protocol + - accepted state + - deterministic replay + - query sufficiency + - finite-state refinement + - probabilistic forecasts + - AI governance diff --git a/research/from-model-output-to-accepted-state/LICENSE.txt b/research/from-model-output-to-accepted-state/LICENSE.txt new file mode 100644 index 0000000..71db565 --- /dev/null +++ b/research/from-model-output-to-accepted-state/LICENSE.txt @@ -0,0 +1,20 @@ +From Model Output to Accepted State +Copyright (c) 2026 Jake Tiller + +This release packet, including its manuscript, figures, documentation, evidence +reports, and verification source, is licensed under the Creative Commons +Attribution 4.0 International License (CC BY 4.0). + +You may share and adapt the material for any purpose, including commercially, +provided that you give appropriate credit, provide a link to the license, and +indicate whether changes were made. + +Human-readable summary: https://creativecommons.org/licenses/by/4.0/ +Full legal text: https://creativecommons.org/licenses/by/4.0/legalcode + +The material is provided AS IS, without warranties or conditions of any kind. +It is independent educational research, not legal, compliance, security, +medical, financial, or other professional advice. Names and trademarks of cited +projects and organizations belong to their respective owners. This license does +not relicense third-party works that are quoted, cited, or linked. Citation does +not imply affiliation or endorsement. diff --git a/research/from-model-output-to-accepted-state/README.md b/research/from-model-output-to-accepted-state/README.md new file mode 100644 index 0000000..9068916 --- /dev/null +++ b/research/from-model-output-to-accepted-state/README.md @@ -0,0 +1,68 @@ +# From Model Output to Accepted State + +Status: **OWNER-REVIEW DRAFT**
+Release packet: `0.1.0-owner-review.4`
+Recorded: 2026-08-15 + +This packet publishes a bounded draft, its readable outputs, the authored manuscript and figure source, minimized local evidence reports, and offline integrity checks. The dependency-bearing assembly helper remains outside this zero-dependency public boundary. This is a review surface, not a claim of publication acceptance, independent replication, production safety, or deployment authority. + +## Start here + +1. Read [`paper/From-Model-Output-to-Accepted-State-Owner-Review-v4.pdf`](paper/From-Model-Output-to-Accepted-State-Owner-Review-v4.pdf). +2. Read [`BOUNDARIES.md`](BOUNDARIES.md) before reusing a result. +3. Follow [`REPRODUCE.md`](REPRODUCE.md) for a clean-clone check. +4. Run the packet verifier: + + ```powershell + powershell -NoProfile -ExecutionPolicy Bypass -File .\tools\verify.ps1 + ``` + +The verifier is offline. It checks the release allowlist, raw byte lengths, SHA-256 digests, payload root, UTF-8 boundaries, JSON syntax, Python syntax, PDF signature, and selected privacy and credential patterns. The JavaScript and Python implementations must return identical canonical reports. + +The packet adds no package dependency or runtime network call. The owner workspace used Chrome and pypdf to render and inspect the retained PDF, but those optional build dependencies and their helper scripts are deliberately outside this public release boundary. The authored content, figures, styles, rendered outputs, evidence reports, and raw-byte verification floor are included. + +## What is in the packet + +| Path | Function | +|---|---| +| `paper/` | Tagged owner-review PDF and a LinkedIn-safe Markdown rendering. | +| `content_*.py`, `figures.py`, `style.py`, `figures/` | Authored manuscript, figure source, rendered SVG figures, and print style. | +| `evidence/device-activation/` | Frozen finite query-sufficiency result and its original local receipt. | +| `evidence/transition-stable-quotient/` | Frozen future-stability refinement result and its original local receipt. | +| `evidence/blind-prompt/` | Legacy receipt-stable locator for the frozen-oracle packet prompt and aggregate-only public summary. Raw responses, quote-bearing reports, per-response digests, and owner-private mappings are excluded. | +| `evidence/editorial-review/` | Public minimized owner disposition of a private editorial review. The raw review and private locator are excluded. | +| `evidence/lean-query-quotient/` | Exact standalone Lean source and append-only pinned compile receipt. The module is not imported by the package root and is not an upstream Mathlib contribution. | +| `release-manifest.json` | Complete raw-byte allowlist for every packet file except the manifest itself. | +| `claims.json`, `author-markers.json`, `reviewer-markers.template.json` | Marker-blind claims, the separate author key, and a reviewer template for demotion test 6. | +| `REPRODUCE.md`, `CHANGELOG.md` | Clean-clone verification and append-only owner-review revision lineage. | +| `tools/` | Deterministic manifest writer plus separate Python and JavaScript verifiers derived from one release contract. | + +## Bounded results + +- The paper separates candidate output, authorized action, observation, acceptance, and later outcome rather than treating them as one status. +- In one synthetic 151-trace device fixture, all 1,023 nonempty subsets of ten declared candidate fields were checked for seven declared queries. Exactly one five-field subset was minimum by field count within that frozen model. It is not a universal device state or bit minimum. +- In the same finite model, the full seven-query signature was already transition-stable at 33 classes. Removing `nextPermittedActions` produced 18 static classes that refined to the same 33 classes after one round. This is a local Moore/Myhill-Nerode-style result, not new automata theory. +- Three frozen response configurations reproduced 27 of 27 exact answer fields in BP-001, the frozen-oracle packet. Six semantic functions were unambiguously unanimous; other semantic mappings remain bounded or unresolved as stated in the paper. Requested model labels were metadata, not runtime identity attestation. + +## Editorial review disposition + +[`evidence/editorial-review/PUBLIC-DISPOSITION.md`](evidence/editorial-review/PUBLIC-DISPOSITION.md) +binds one private owner-supplied editorial review by byte count and SHA-256 and +publishes only the owner's minimized dispositions. The reviewer attribution is +owner-attested, not runtime-authenticated. The review is editorial assistance, +not evidence, authorship, peer review, source truth, or independent validation. + +## Related-work credit + +With his permission, Jake Macdonald's OpenGoldenRatio (OGR) v0.1 is cited as parallel related work. Macdonald reviewed the bounded comparison and helped clarify the distinction between STP's governed path from candidate output to accepted state and OGR's containment of actor or agent relations. He contributed no code, data, experiments, or authorship to this release. See [`RELATED-WORK.md`](RELATED-WORK.md). + +## Reuse + +The packet is licensed under CC BY 4.0. Cite the exact version or commit you used, keep the status and limitations attached to extracted results, and identify modifications. A passing integrity check establishes byte consistency with this manifest; it does not establish that a claim is true or authorized for a new context. + +The release contains no absolute local-machine path, Codex attachment locator, +workspace-only `work/...` locator, raw prompt response, private review text, account +credential, email address, phone number, or local network address. Retained private +inputs are identified only by bounded source IDs and digests. + +See repository for full list of sources and contributions. diff --git a/research/from-model-output-to-accepted-state/RELATED-WORK.md b/research/from-model-output-to-accepted-state/RELATED-WORK.md new file mode 100644 index 0000000..2fd61ed --- /dev/null +++ b/research/from-model-output-to-accepted-state/RELATED-WORK.md @@ -0,0 +1,23 @@ +# Related work and contribution boundary + +## OpenGoldenRatio + +Jake Macdonald granted permission to cite *OpenGoldenRatio (OGR) v0.1: Containment-First Multi-Agent Governance Protocol* as parallel related work and reviewed the comparison in this draft. + +The comparison retained in the paper is narrow: + +- STP follows the governed transformation from candidate output toward accepted state. +- OGR focuses on containment and governed relationships among actors or agents, including whether a permitted action may propagate consequence. +- Both separate proposal, evidence, permission, and consequence more carefully than a single undifferentiated approval state. + +Macdonald's contribution to this project was review and clarification of that comparison. He did not contribute code, data, experiments, implementation, or authorship, and OGR is not used as evidence that STP works. Neither work is described as deriving from, implementing, or subsuming the other. + +Citation: + +> J. Macdonald. *OpenGoldenRatio (OGR) v0.1: Containment-First Multi-Agent Governance Protocol*. Zenodo, 2026. https://doi.org/10.5281/zenodo.18969396 + +Pinned demonstrator reviewed for the paper: + +`https://github.com/macess888-cmyk/open-golden-ratio-demo/commit/58450185582f4ecf1410b33f77e22d8d4b0441a2` + +See the paper's references and related-work section for the full bounded comparison. diff --git a/research/from-model-output-to-accepted-state/REPRODUCE.md b/research/from-model-output-to-accepted-state/REPRODUCE.md new file mode 100644 index 0000000..a0d47fc --- /dev/null +++ b/research/from-model-output-to-accepted-state/REPRODUCE.md @@ -0,0 +1,90 @@ +# Reproduce the release integrity check + +This procedure verifies the exact bytes of this owner-review packet. It does not +rebuild the PDF, reproduce excluded inputs, independently replicate an experiment, +or establish the truth, novelty, authorship, authority, safety, or fitness of a +claim. + +## Requirements + +- Git +- Python 3 +- Node.js + +No package installation or runtime network access is required after cloning. + +## Obtain a clean checkout + +Use the exact release commit or tag identified by the repository release or pull +request. + +```sh +git clone https://github.com/JakeTOpenSource/Resilience-Ledger.git +cd Resilience-Ledger +git checkout --detach +git status --porcelain=v1 +cd research/from-model-output-to-accepted-state +``` + +`git status --porcelain=v1` must print nothing. The repository-root and packet-local +`.gitattributes` files disable line-ending conversion so byte comparisons do not +produce a false failure on Windows. Do not remove that rule when re-homing the +packet. + +## Windows + +```powershell +powershell -NoProfile -ExecutionPolicy Bypass -File .\tools\verify.ps1 +``` + +A successful result reports `VERIFY PASS`, cross-language parity, the checked file +count, payload root, manifest SHA-256, and `status=PASS`. + +## macOS or Linux + +```sh +python3 -B tools/update_claim_register.py --check || exit 1 +python_report="$(python3 tools/verify_release.py)" || exit 1 +node_report="$(node tools/verify-release.mjs)" || exit 1 + +if [ "$python_report" != "$node_report" ]; then + printf '%s\n' "Cross-language canonical report mismatch" >&2 + exit 1 +fi + +printf '%s\n' "$python_report" +``` + +If Python 3 is installed as `python`, substitute that executable name. + +## Claim-marker reassignment + +For demotion test 6, give an external reviewer only: + +- `claims.json`, which embeds the neutral four-marker policy; +- `reviewer-markers.template.json`; +- the packet files named by accessible `sources` records in `claims.json`; and +- any public external source the reviewer retrieves and verifies against its + registered identity: commit and tree for a tree record, or commit, path, byte + length, and SHA-256 for a blob record. + +Copy `reviewer-markers.template.json` outside the checkout before filling it; editing +the packet copy correctly breaks its byte manifest and clean-worktree check. Withhold +`author-markers.json`, `content_a.py`, `content_b.py`, `content_c.py`, the PDF, and +the LinkedIn companion until the reviewer seals the assignments. A retained or +unavailable source stays unavailable and must be recorded that way; it may not be +silently treated as reviewed. The separation is a procedural blind, not +cryptographic secrecy after publication. After the reviewer seals assignments, +compare by `claim_id`: a mismatch is `CONTESTED/HOLD`, a missing assignment is +`INCOMPLETE`, and neither result can auto-promote a claim. + +## Boundaries + +Do not redirect verifier output into this packet: an added file correctly causes an +allowlist failure. Do not run `tools/update_manifest.py` as a verification step; it +rewrites the manifest and is a maintainer-only release operation. Do not run +`tools/update_claim_register.py` during verification; use its `--check` option. + +After verification, `git status --porcelain=v1` should still print nothing. A pass +establishes consistency with the committed manifest and checkout. The Git commit or +release tag is the external identity anchor. diff --git a/research/from-model-output-to-accepted-state/author-markers.json b/research/from-model-output-to-accepted-state/author-markers.json new file mode 100644 index 0000000..e4221e4 --- /dev/null +++ b/research/from-model-output-to-accepted-state/author-markers.json @@ -0,0 +1,653 @@ +{ + "schema_version": "fmota-marker-assignments.v1", + "claim_register_sha256": "48e1d732cb8fd59ff54f47b996a2bc48ff25b62b386ba411e364f49e4b03817f", + "assignment_role": "AUTHOR_KEY", + "assignment_set_id": "author-v4", + "assignments": [ + { + "claim_id": "FMOTA-V4-CLM-001", + "marker": "PROPOSED", + "ceiling": "Design, definition, or protocol proposal only; not implementation or outcome evidence.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-002", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-PUBLIC-STP-COMMIT" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-003", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-DEVICE-ANALYSIS", + "EV-DEVICE-RECEIPT", + "EV-TRANSITION-REPORT", + "EV-TRANSITION-RECEIPT", + "EV-BP-PROMPT", + "EV-BP-SUMMARY", + "EV-BP-EVALUATOR", + "EV-BP-RECEIPT", + "EV-PUBLIC-STP-COMMIT" + ], + "unavailable_source_ids": [ + "EV-BP-EVALUATOR", + "EV-BP-RECEIPT" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-004", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-RL-LEDGER-LIB", + "EV-RL-REPLAY-PY", + "EV-RL-VERIFY-REPLAYERS", + "EV-RL-GATE", + "EV-RL-ATLAS-DATA-CONTRACT", + "EV-RL-ATLAS-RUNTIME-CONTRACT", + "EV-RL-OBSERVATION-000001" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-005", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-PUBLIC-STP-COMMIT" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-006", + "marker": "OPEN", + "ceiling": "Unresolved; it cannot support acceptance, equivalence, or a positive operational claim.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-007", + "marker": "PROPOSED", + "ceiling": "Design, definition, or protocol proposal only; not implementation or outcome evidence.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-008", + "marker": "PROPOSED", + "ceiling": "Design, definition, or protocol proposal only; not implementation or outcome evidence.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-BP-PROMPT", + "EV-BP-SUMMARY" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-009", + "marker": "OPEN", + "ceiling": "Unresolved; it cannot support acceptance, equivalence, or a positive operational claim.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-RL-TREE-275D" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-010", + "marker": "PROPOSED", + "ceiling": "Design, definition, or protocol proposal only; not implementation or outcome evidence.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-011", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-PUBLIC-STP-COMMIT" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-012", + "marker": "PROPOSED", + "ceiling": "Design, definition, or protocol proposal only; not implementation or outcome evidence.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-013", + "marker": "PROPOSED", + "ceiling": "Design, definition, or protocol proposal only; not implementation or outcome evidence.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-014", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-PUBLIC-STP-COMMIT" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-015", + "marker": "PROPOSED", + "ceiling": "Design, definition, or protocol proposal only; not implementation or outcome evidence.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-016", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-PUBLIC-STP-COMMIT" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-017", + "marker": "PROPOSED", + "ceiling": "Design, definition, or protocol proposal only; not implementation or outcome evidence.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-018", + "marker": "PROPOSED", + "ceiling": "Design, definition, or protocol proposal only; not implementation or outcome evidence.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-019", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-RL-LEDGER-LIB", + "EV-RL-REPLAY-PY", + "EV-RL-VERIFY-REPLAYERS" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-020", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-RL-LEDGER-LIB", + "EV-RL-REPLAY-PY", + "EV-RL-VERIFY-REPLAYERS", + "EV-RL-CI-GATES" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-021", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-PUBLIC-STP-COMMIT" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-022", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-PUBLIC-STP-COMMIT" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-023", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-RL-LEDGER-LIB", + "EV-RL-REPLAY-PY", + "EV-RL-VERIFY-REPLAYERS" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-024", + "marker": "OPEN", + "ceiling": "Unresolved; it cannot support acceptance, equivalence, or a positive operational claim.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-025", + "marker": "OPEN", + "ceiling": "Unresolved; it cannot support acceptance, equivalence, or a positive operational claim.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-026", + "marker": "OPEN", + "ceiling": "Unresolved; it cannot support acceptance, equivalence, or a positive operational claim.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-027", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-RL-GATE" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-028", + "marker": "PROPOSED", + "ceiling": "Design, definition, or protocol proposal only; not implementation or outcome evidence.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-RL-LEDGER-LIB", + "EV-RL-REPLAY-PY", + "EV-RL-VERIFY-REPLAYERS" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-029", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-PUBLIC-STP-COMMIT" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-030", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-RL-LEDGER-LIB", + "EV-RL-REPLAY-PY", + "EV-RL-VERIFY-REPLAYERS" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-031", + "marker": "OPEN", + "ceiling": "Unresolved; it cannot support acceptance, equivalence, or a positive operational claim.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-032", + "marker": "OPEN", + "ceiling": "Unresolved; it cannot support acceptance, equivalence, or a positive operational claim.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-033", + "marker": "PROPOSED", + "ceiling": "Design, definition, or protocol proposal only; not implementation or outcome evidence.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-034", + "marker": "PROPOSED", + "ceiling": "Design, definition, or protocol proposal only; not implementation or outcome evidence.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-035", + "marker": "PROPOSED", + "ceiling": "Design, definition, or protocol proposal only; not implementation or outcome evidence.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-036", + "marker": "PROPOSED", + "ceiling": "Design, definition, or protocol proposal only; not implementation or outcome evidence.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-037", + "marker": "PROPOSED", + "ceiling": "Design, definition, or protocol proposal only; not implementation or outcome evidence.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-038", + "marker": "PROPOSED", + "ceiling": "Design, definition, or protocol proposal only; not implementation or outcome evidence.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-RL-GATE" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-039", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-DEVICE-ANALYSIS", + "EV-DEVICE-RECEIPT", + "EV-TRANSITION-REPORT", + "EV-TRANSITION-RECEIPT", + "EV-BP-PROMPT", + "EV-BP-SUMMARY", + "EV-BP-EVALUATOR", + "EV-BP-RECEIPT" + ], + "unavailable_source_ids": [ + "EV-BP-EVALUATOR", + "EV-BP-RECEIPT" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-062", + "marker": "OPEN", + "ceiling": "Unresolved; it cannot support acceptance, equivalence, or a positive operational claim.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-040", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-RL-GATE" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-041", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-RL-ATLAS-DATA-CONTRACT", + "EV-RL-ATLAS-RUNTIME-CONTRACT", + "EV-RL-GATE" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-042", + "marker": "OBSERVED", + "ceiling": "Observed in the named run or artifact only; no causal or general claim.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-RL-OBSERVATION-000001" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-043", + "marker": "OBSERVED", + "ceiling": "Observed in the named run or artifact only; no causal or general claim.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-RL-OBSERVATION-000002" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-044", + "marker": "OBSERVED", + "ceiling": "Observed in the named run or artifact only; no causal or general claim.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-RL-OBSERVATION-000003", + "EV-RL-CHECKPOINT-000013" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-045", + "marker": "OPEN", + "ceiling": "Unresolved; it cannot support acceptance, equivalence, or a positive operational claim.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-RL-OBSERVATION-000003", + "EV-RL-CHECKPOINT-000013" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-046", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-BP-PROMPT", + "EV-BP-SUMMARY", + "EV-BP-EVALUATOR", + "EV-BP-RECEIPT" + ], + "unavailable_source_ids": [ + "EV-BP-EVALUATOR", + "EV-BP-RECEIPT" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-047", + "marker": "OPEN", + "ceiling": "Unresolved; it cannot support acceptance, equivalence, or a positive operational claim.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-BP-PROMPT", + "EV-BP-SUMMARY", + "EV-BP-EVALUATOR", + "EV-BP-RECEIPT" + ], + "unavailable_source_ids": [ + "EV-BP-EVALUATOR", + "EV-BP-RECEIPT" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-048", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-RL-OBSERVATION-000001", + "EV-RL-GATE" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-049", + "marker": "OPEN", + "ceiling": "Unresolved; it cannot support acceptance, equivalence, or a positive operational claim.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-RL-OBSERVATION-000001", + "EV-RL-OBSERVATION-000002", + "EV-RL-TREE-275D" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-050", + "marker": "OBSERVED", + "ceiling": "Observed in the named run or artifact only; no causal or general claim.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-TYPED-REFUSAL-ARMS", + "EV-TYPED-REFUSAL-STATS" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-051", + "marker": "OPEN", + "ceiling": "Unresolved; it cannot support acceptance, equivalence, or a positive operational claim.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-TYPED-REFUSAL-ARMS", + "EV-TYPED-REFUSAL-STATS", + "EV-TYPED-REFUSAL-TREE", + "EV-TYPED-REFUSAL-CORPUS" + ], + "unavailable_source_ids": [ + "EV-TYPED-REFUSAL-CORPUS" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-052", + "marker": "OBSERVED", + "ceiling": "Observed in the named run or artifact only; no causal or general claim.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-STABLE-PREREGISTRATION", + "EV-STABLE-DECISION-LOGS", + "EV-STABLE-CELLS" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-053", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-STABLE-REPLAY", + "EV-STABLE-CELLS", + "EV-STABLE-GATE" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-054", + "marker": "OPEN", + "ceiling": "Unresolved; it cannot support acceptance, equivalence, or a positive operational claim.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-055", + "marker": "PROPOSED", + "ceiling": "Design, definition, or protocol proposal only; not implementation or outcome evidence.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-PUBLIC-STP-COMMIT" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-056", + "marker": "PROPOSED", + "ceiling": "Design, definition, or protocol proposal only; not implementation or outcome evidence.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-PUBLIC-STP-COMMIT" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-057", + "marker": "PROPOSED", + "ceiling": "Design, definition, or protocol proposal only; not implementation or outcome evidence.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-058", + "marker": "OPEN", + "ceiling": "Unresolved; it cannot support acceptance, equivalence, or a positive operational claim.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-059", + "marker": "PROPOSED", + "ceiling": "Design, definition, or protocol proposal only; not implementation or outcome evidence.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-PUBLIC-STP-COMMIT" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-060", + "marker": "OPEN", + "ceiling": "Unresolved; it cannot support acceptance, equivalence, or a positive operational claim.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-LEAN-QUERY-SOURCE", + "EV-LEAN-QUERY-RECEIPT" + ], + "unavailable_source_ids": [] + }, + { + "claim_id": "FMOTA-V4-CLM-061", + "marker": "TESTED", + "ceiling": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": [ + "EV-WINDOWS-CLEAN-CLONE-V3", + "EV-REPRODUCE-RUNBOOK", + "EV-PACKET-EOL-RULE" + ], + "unavailable_source_ids": [] + } + ] +} diff --git a/research/from-model-output-to-accepted-state/claims.json b/research/from-model-output-to-accepted-state/claims.json new file mode 100644 index 0000000..a5cf058 --- /dev/null +++ b/research/from-model-output-to-accepted-state/claims.json @@ -0,0 +1,1394 @@ +{ + "schema_version": "fmota-claim-register.v1", + "status": "OWNER_REVIEW", + "paper_output_path": "paper/From-Model-Output-to-Accepted-State-Owner-Review-v4.pdf", + "paper_source_sha256": { + "content_a.py": "02dafb2397764c730f8d8f007de502984e86615151ec82b9d4fbeff4eabff317", + "content_b.py": "7802aa784bfdfedf33a72034b70f79a995a39c9e98ee8a502e37a9596ee098d0", + "content_c.py": "80bab59a91296a91e98a271b036835c5018e2f9125f8b3474ce947f2a34ee059" + }, + "marker_policy": { + "source_path": "content_a.py", + "source_sha256": "02dafb2397764c730f8d8f007de502984e86615151ec82b9d4fbeff4eabff317", + "section": "2 / Table 1", + "definitions": { + "TESTED": { + "meaning": "Exact behavior over a named finite corpus, reproducible by a stated command.", + "never_means": "That the behavior generalizes past that corpus." + }, + "OBSERVED": { + "meaning": "A bounded inspection of a named surface at a recorded time.", + "never_means": "That the surface still looks that way, or that other surfaces match." + }, + "PROPOSED": { + "meaning": "Specified or reasoned beyond the tested artifact boundary. It may have a partial fixture, but the marked claim itself is not established.", + "never_means": "Implemented behavior. Do not cite it as a result." + }, + "OPEN": { + "meaning": "I do not know, and I say where the evidence stops.", + "never_means": "That the question is unimportant." + } + } + }, + "blinding_protocol": "Give claims.json, registered accessible sources, and reviewer-markers.template.json to the reviewer before exposing the marked manuscript or author-markers.json. This is procedural blinding, not cryptographic secrecy after publication.", + "comparison_rule": "Compare by claim_id only. Equal markers agree. Any mismatch is MATERIAL_DISAGREEMENT and places the claim in CONTESTED/HOLD until owner adjudication; missing assignments are INCOMPLETE. Never auto-promote.", + "sources": [ + { + "source_id": "EV-PUBLIC-STP-COMMIT", + "kind": "public_git_blob", + "repository": "JakeTOpenSource/Resilience-Ledger", + "commit": "275d0b3e7474ef58456c82a042163567cd12122f", + "path": "research/stp-v1.2/release-manifest.json", + "expected_bytes": 3613, + "expected_sha256": "2f95ed233a20060d1cbca3fae555410732242b26d9fb08afe482bc3390077704", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-RL-TREE-275D", + "kind": "public_git_tree", + "repository": "JakeTOpenSource/Resilience-Ledger", + "commit": "275d0b3e7474ef58456c82a042163567cd12122f", + "tree": "ed1342684125e9165f27fdc6d9702b102665b324", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-RL-GATE", + "kind": "public_git_blob", + "repository": "JakeTOpenSource/Resilience-Ledger", + "commit": "275d0b3e7474ef58456c82a042163567cd12122f", + "path": "governance/harnesses/run-all.js", + "expected_bytes": 925, + "expected_sha256": "2725275449ea6bd25d460e328885dcf11685af2854582fef2db8aa61f6f33a96", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-RL-LEDGER-LIB", + "kind": "public_git_blob", + "repository": "JakeTOpenSource/Resilience-Ledger", + "commit": "275d0b3e7474ef58456c82a042163567cd12122f", + "path": "governance/ledger/lib.js", + "expected_bytes": 18577, + "expected_sha256": "8e824d144f5416fc969ab49f13639325c4a5cfc32970a006e3732181b9c68ac8", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-RL-REPLAY-PY", + "kind": "public_git_blob", + "repository": "JakeTOpenSource/Resilience-Ledger", + "commit": "275d0b3e7474ef58456c82a042163567cd12122f", + "path": "governance/harnesses/replay.py", + "expected_bytes": 7946, + "expected_sha256": "db6fdd073034e0c2173af0d65dca6c3db3e73cd4841f25bbc3fbb91aee069279", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-RL-VERIFY-REPLAYERS", + "kind": "public_git_blob", + "repository": "JakeTOpenSource/Resilience-Ledger", + "commit": "275d0b3e7474ef58456c82a042163567cd12122f", + "path": "governance/harnesses/verify-replayers.js", + "expected_bytes": 1854, + "expected_sha256": "7e63495fe344b007b221061c73c8b70dbf536e924db1ce9da9a7d14426da6b49", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-RL-CI-GATES", + "kind": "public_git_blob", + "repository": "JakeTOpenSource/Resilience-Ledger", + "commit": "275d0b3e7474ef58456c82a042163567cd12122f", + "path": ".github/workflows/gates.yml", + "expected_bytes": 2914, + "expected_sha256": "066c58b7841bb0363ed28bb9196f568a0de82f663b891cb8ae6ce6d22d579723", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-RL-ATLAS-DATA-CONTRACT", + "kind": "public_git_blob", + "repository": "JakeTOpenSource/Resilience-Ledger", + "commit": "275d0b3e7474ef58456c82a042163567cd12122f", + "path": "governance/contracts/atlas-data-sync.contract.v2.json", + "expected_bytes": 10165, + "expected_sha256": "7366c7042ec2e40a501fe091f9367eb5e8e8449763b69afadf29762864d58263", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-RL-ATLAS-RUNTIME-CONTRACT", + "kind": "public_git_blob", + "repository": "JakeTOpenSource/Resilience-Ledger", + "commit": "275d0b3e7474ef58456c82a042163567cd12122f", + "path": "governance/contracts/atlas-runtime-contract.v1.json", + "expected_bytes": 2558, + "expected_sha256": "7cd8c2a89f6df20995789f066643240a4cbcbc3ca67d2dc1cc4c71129b22ffd5", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-RL-OBSERVATION-000001", + "kind": "public_git_blob", + "repository": "JakeTOpenSource/Resilience-Ledger", + "commit": "275d0b3e7474ef58456c82a042163567cd12122f", + "path": "governance/ledger/events/deployment/000001-wp0-production-observation.json", + "expected_bytes": 6252, + "expected_sha256": "34bde4ec2eb4d1bfb70b8d44df6439cb295bd1dc1293df0ae47490193ad3fa97", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-RL-OBSERVATION-000002", + "kind": "public_git_blob", + "repository": "JakeTOpenSource/Resilience-Ledger", + "commit": "275d0b3e7474ef58456c82a042163567cd12122f", + "path": "governance/ledger/events/deployment/000002-public-explanation-production-observed.json", + "expected_bytes": 10952, + "expected_sha256": "4917a927727e3b0cc03cd057100a698ccc18e51751f69dd33f5bed14344fa24f", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-RL-OBSERVATION-000003", + "kind": "public_git_blob", + "repository": "JakeTOpenSource/Resilience-Ledger", + "commit": "5f9cc145763bc51b183e93b4f7059b25aa6ee2ca", + "path": "governance/ledger/events/deployment/000003-service-worker-drift-closed.json", + "expected_bytes": 4782, + "expected_sha256": "f03960cb1927a2c89fa5b9e98bd9cdf0cdd977c6b45fe19937346264251158e4", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-RL-CHECKPOINT-000013", + "kind": "public_git_blob", + "repository": "JakeTOpenSource/Resilience-Ledger", + "commit": "5f9cc145763bc51b183e93b4f7059b25aa6ee2ca", + "path": "governance/ledger/checkpoints/checkpoint-000013.json", + "expected_bytes": 4922, + "expected_sha256": "17a2bf4ee223dcbd55bdf22dd66aebac95c6c3273d958fb0a15f4608917fcbb2", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-DEVICE-ANALYSIS", + "kind": "packet_file", + "path": "evidence/device-activation/expected-analysis.json", + "expected_bytes": 2737, + "expected_sha256": "7c550d125d383f7238ff936c7d05a3815ceb35132326253b973562fbca4b0a80", + "access": "PUBLIC_PACKET", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-DEVICE-RECEIPT", + "kind": "packet_file", + "path": "evidence/device-activation/BUILD-RECEIPT-000001.md", + "expected_bytes": 3158, + "expected_sha256": "ee60b9aa4baa0286fb5899255380d6bf9772ca9240354bddc3b1a75fce1b9ab6", + "access": "PUBLIC_PACKET", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-TRANSITION-REPORT", + "kind": "packet_file", + "path": "evidence/transition-stable-quotient/expected-report.json", + "expected_bytes": 2627, + "expected_sha256": "1b0e78adcac732561a0263ef2704d53b397597c502f81e88a0999a37232df183", + "access": "PUBLIC_PACKET", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-TRANSITION-RECEIPT", + "kind": "packet_file", + "path": "evidence/transition-stable-quotient/BUILD-RECEIPT-000001.md", + "expected_bytes": 4016, + "expected_sha256": "4d0b0f50c361c51734db51a786fdc40b85de591e077d295677dbd40d63967514", + "access": "PUBLIC_PACKET", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-BP-PROMPT", + "kind": "packet_file", + "path": "evidence/blind-prompt/PROMPT.md", + "expected_bytes": 1662, + "expected_sha256": "6b0628ef41bdf3b8d871238aa39ac44af43576887d5e0b1ed44ad8e7cdeccaf1", + "access": "PUBLIC_PACKET", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-BP-SUMMARY", + "kind": "packet_file", + "path": "evidence/blind-prompt/PUBLIC-SUMMARY.md", + "expected_bytes": 1925, + "expected_sha256": "b04998e04354f0027a42aa2f082b4d934bd50a76aa387e22d73705bde5fe95c4", + "access": "PUBLIC_PACKET", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-BP-EVALUATOR", + "kind": "retained_digest", + "retained_source_id": "BP-EVALUATOR-001", + "expected_bytes": 20945, + "expected_sha256": "de2c28735762a153602fc6e4bb777520c2aa3c687837e3f64b6277c459d67fe9", + "access": "RETAINED_RESTRICTED", + "verification_status": "DECLARED_ONLY" + }, + { + "source_id": "EV-BP-RECEIPT", + "kind": "retained_digest", + "retained_source_id": "BP-RECEIPT-001", + "expected_bytes": 4488, + "expected_sha256": "537e8cc13e8425e53304dd22637df6d186efa4df0be0f910a747b5f78632c815", + "access": "RETAINED_RESTRICTED", + "verification_status": "DECLARED_ONLY" + }, + { + "source_id": "EV-LEAN-QUERY-SOURCE", + "kind": "packet_file", + "path": "evidence/lean-query-quotient/QueryQuotient.lean", + "expected_bytes": 3791, + "expected_sha256": "cfbb166202ade30abc0c79287ff8c1acf216e91a863121ade923218caede9896", + "access": "PUBLIC_PACKET", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-LEAN-QUERY-RECEIPT", + "kind": "packet_file", + "path": "evidence/lean-query-quotient/BUILD-RECEIPT-000005.md", + "expected_bytes": 4233, + "expected_sha256": "8cdb9da9a9ddaba90c63390f1e94d11e18ca32f7d2a95b46b6ce3e1a27de79b2", + "access": "PUBLIC_PACKET", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-TYPED-REFUSAL-ARMS", + "kind": "public_git_blob", + "repository": "JakeTOpenSource/typed-refusal-harness", + "commit": "721a824c9f735d3972d720b41685469a1020fa91", + "path": "data/arms.json", + "expected_bytes": 4937, + "expected_sha256": "504ca00f4286f25ee80ebe4cc9aacb2a05326b66c45602e40113117bbb40389b", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-TYPED-REFUSAL-STATS", + "kind": "public_git_blob", + "repository": "JakeTOpenSource/typed-refusal-harness", + "commit": "721a824c9f735d3972d720b41685469a1020fa91", + "path": "data/stats.py", + "expected_bytes": 5364, + "expected_sha256": "8ecd41b40b7b75eaaa93ee0caa017e764182a3e0aee0a6f1beda7aa86277c802", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-TYPED-REFUSAL-TREE", + "kind": "public_git_tree", + "repository": "JakeTOpenSource/typed-refusal-harness", + "commit": "721a824c9f735d3972d720b41685469a1020fa91", + "tree": "ae82fa57c0b34bb2166424128d2537822e53bc26", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-TYPED-REFUSAL-CORPUS", + "kind": "retained_digest", + "retained_source_id": "TR-CORPUS-TITLE-29", + "expected_bytes": 11666245, + "expected_sha256": "188ab1c50a46f0dd2ff32aaa5f65c759a07710e052d297644b1a8f6b58ff413d", + "access": "RETAINED_RESTRICTED", + "verification_status": "UNAVAILABLE" + }, + { + "source_id": "EV-STABLE-PREREGISTRATION", + "kind": "public_git_blob", + "repository": "JakeTOpenSource/the-stable", + "commit": "77408db59cad3f968ac9ba5a0c0c6689a90e80d4", + "path": "experiments/replication-2026-07-17/PREREGISTRATION.md", + "expected_bytes": 7602, + "expected_sha256": "eff780cff6a4522370af2f00d01a7dc121ab143677f805cbdc865620dad7820b", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-STABLE-DECISION-LOGS", + "kind": "public_git_blob", + "repository": "JakeTOpenSource/the-stable", + "commit": "77408db59cad3f968ac9ba5a0c0c6689a90e80d4", + "path": "experiments/replication-2026-07-17/decision-logs.json", + "expected_bytes": 144527, + "expected_sha256": "9fb48b2c0a837f91581c5faf5a043126348b6f86e64bf2383182f65978ffdca6", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-STABLE-REPLAY", + "kind": "public_git_blob", + "repository": "JakeTOpenSource/the-stable", + "commit": "77408db59cad3f968ac9ba5a0c0c6689a90e80d4", + "path": "bridge/replay-replication.js", + "expected_bytes": 5373, + "expected_sha256": "2fd2afa0b90395194b3165e19c580c4af626dfae7f54cb44193b1c326d25ebb0", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-STABLE-CELLS", + "kind": "public_git_blob", + "repository": "JakeTOpenSource/the-stable", + "commit": "77408db59cad3f968ac9ba5a0c0c6689a90e80d4", + "path": "bridge/replication-cells.json", + "expected_bytes": 8097, + "expected_sha256": "326b544a425daf07fe38790d58ee1dfdba825536bec84e7f81a3c46b187e2939", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-STABLE-GATE", + "kind": "public_git_blob", + "repository": "JakeTOpenSource/the-stable", + "commit": "77408db59cad3f968ac9ba5a0c0c6689a90e80d4", + "path": "stable-gate.js", + "expected_bytes": 15250, + "expected_sha256": "7ab31a6cd8daa969a61230cb545db30c27b8cf80820150b07bc7328c5e16a9a2", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-WINDOWS-CLEAN-CLONE-V3", + "kind": "packet_file", + "path": "evidence/reproduction/WINDOWS-CLEAN-CLONE-V3.md", + "expected_bytes": 3453, + "expected_sha256": "7f5476957fad26c621a730dba01a441a17262bf6a6b3d89a3c3f1168f9c6f7c2", + "access": "PUBLIC_PACKET", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-REPRODUCE-RUNBOOK", + "kind": "packet_file", + "path": "REPRODUCE.md", + "expected_bytes": 3408, + "expected_sha256": "dde7934c3a54cc2b1b1156314dbbcd22d1855cd448f0478bfa770678a8cbffcf", + "access": "PUBLIC_PACKET", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-PACKET-EOL-RULE", + "kind": "packet_file", + "path": ".gitattributes", + "expected_bytes": 239, + "expected_sha256": "7ccb36d6cee337107bbdd2ac846114861d66e81b803cfead82bbb8e639598a54", + "access": "PUBLIC_PACKET", + "verification_status": "VERIFIED_BYTES" + }, + { + "source_id": "EV-PAPER-CONTEXT", + "kind": "paper_context", + "access": "PUBLIC_PACKET", + "verification_status": "NOT_EVIDENCE" + } + ], + "claims": [ + { + "claim_id": "FMOTA-V4-CLM-001", + "section": "Abstract", + "scope": "paragraph", + "fragment": "FRONT", + "claim_text": "This paper proposes the State Transition Protocol as a typed boundary around a probabilistic proposer. A conceptual ten-stage lifecycle separates proposal from authority, execution, observation, acceptance, and correction. The broader observation algebra and six-condition reporting surface are also design proposals.", + "claim_text_sha256": "7e376684c19a7fca6cbd535703619017bb7619bda15731c44e81f40c06b1964a", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-002", + "section": "Abstract", + "scope": "paragraph", + "fragment": "FRONT", + "claim_text": "The public packet implements a narrower seven-event instrument profile over synthetic fixtures; it is not a complete implementation of that lifecycle. Within the tested slice, deterministic reducers rebuild a finite projection from pinned inputs.", + "claim_text_sha256": "fdc1f50ea21fb6b1cf498ee026e539b8294ef4d2e800c3bc31662809b46d9e09", + "review_source_ids": [ + "EV-PUBLIC-STP-COMMIT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-003", + "section": "Abstract", + "scope": "paragraph", + "fragment": "FRONT", + "claim_text": "Three additional local packets test a finite query representation, transition-stable refinement, and recovery of frozen answer fields from one compact prompt. That prompt declared separate gate, forecast, and pending-resolution fields; all three responses recovered the frozen finite outputs. No real forecast was issued or resolved. These local results extend the analysis but are not part of the pinned public commit.", + "claim_text_sha256": "1ead4ada9fe250f8bae6a08a4c258dce6720eb3ceddb213670cd9c9738dfab1d", + "review_source_ids": [ + "EV-DEVICE-ANALYSIS", + "EV-DEVICE-RECEIPT", + "EV-TRANSITION-REPORT", + "EV-TRANSITION-RECEIPT", + "EV-BP-PROMPT", + "EV-BP-SUMMARY", + "EV-BP-EVALUATOR", + "EV-BP-RECEIPT", + "EV-PUBLIC-STP-COMMIT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-004", + "section": "Abstract", + "scope": "paragraph", + "fragment": "FRONT", + "claim_text": "The evidence is finite and I state its limits precisely. Separate JavaScript and Python ports derived from the same specification and fixture corpus produce the same projection root over the pinned inputs, and did so on runtime versions two releases apart from the pinned continuous-integration environment. This is cross-language replay parity, not independent reproduction. Thirty-four runner-reported numbered holds across twelve suites are a diagnostic inventory, not a coverage measure. A data contract found that six public views of one 439-term source had drifted apart, and that 258 shared terms disagreed on review status. A production observation found 100 of 102 paths matching and left two unresolved rather than rounding them off.", + "claim_text_sha256": "5567e94afbc4d50b334d0dcec5f4851c3a960513baa6c4d9386936046a8b5d3a", + "review_source_ids": [ + "EV-RL-LEDGER-LIB", + "EV-RL-REPLAY-PY", + "EV-RL-VERIFY-REPLAYERS", + "EV-RL-GATE", + "EV-RL-ATLAS-DATA-CONTRACT", + "EV-RL-ATLAS-RUNTIME-CONTRACT", + "EV-RL-OBSERVATION-000001" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-005", + "section": "1The problem, in plain terms", + "scope": "paragraph", + "fragment": "SUMMARY", + "claim_text": "The public evidence is narrower than the conceptual protocol. It establishes finite behavior for an instrumented seven-event profile and related harnesses. It does not establish end-to-end conformance with the proposed ten-stage lifecycle.", + "claim_text_sha256": "816a828171333eb93eda9bb7a125535d5b95e3ef97b904bd66263d48d51e1945", + "review_source_ids": [ + "EV-PUBLIC-STP-COMMIT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-006", + "section": "Artifact identity is part of the result", + "scope": "paragraph", + "fragment": "CLAIMS", + "claim_text": "The Calibration Ledger document I hold does not match the Ledger digest printed in State Transition Protocol v1.1, and I could not retrieve the bytes that digest was computed over. I do not know whether the document is a later revision, a sibling artifact, or an unrelated export. I have not treated the two as equivalent anywhere in this paper.", + "claim_text_sha256": "6002d12197f284aefdd5e95c5036f4086408b9b87c2f99220373c7243861728e", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-007", + "section": "Two lanes, one acceptance boundary", + "scope": "paragraph", + "fragment": "BOUNDARY", + "claim_text": "The proposed record order is FREEZE_FORECAST \u2192 CHOOSE_ACTION \u2192 APPEND_RESOLUTION \u2192 SCORE_FORECAST \u2192 UPDATE_CALIBRATION. Before a qualified resolution is appended, the forecast remains pending. Pending is not zero, false, success, or failure. A reducer for these proposed records can verify the order, identities, score, and replay without claiming that the forecast was true when issued or that the selected action was wise.", + "claim_text_sha256": "2540976e28d195ddd74fa36cb0d64cfb356e648dc4c0b562f5ba52107828a6ef", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-008", + "section": "Two lanes, one acceptance boundary", + "scope": "paragraph", + "fragment": "BOUNDARY", + "claim_text": "BP-001 used HOLD as a frozen gate value and asked for its execution output, BLOCK. This paper maps an UNRESOLVED condition to HOLD as a post-test vocabulary crosswalk. BP-001 established HOLD to BLOCK only; it did not test the crosswalk.", + "claim_text_sha256": "0bb27775359f45e922a12b70a36c74a52b50d4a96b54ed712096213d356c40fb", + "review_source_ids": [ + "EV-BP-PROMPT", + "EV-BP-SUMMARY", + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-009", + "section": "What the threat model covers", + "scope": "paragraph", + "fragment": "BOUNDARY", + "claim_text": "The trusted computing base is not one object. It is the policy, the schemas, the reducers, the canonicalization rules, the authority registry, the keys, the clocks, the instrument contracts, the evidence stores, and the release process. This implementation does not provide an independently operated root of trust for all of them.", + "claim_text_sha256": "73d26d9db98fef14b0504036d6023db98f5699e4f9db81378183c355b0685491", + "review_source_ids": [ + "EV-RL-TREE-275D", + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-010", + "section": "4A proposed ten-stage lifecycle", + "scope": "paragraph", + "fragment": "LIFECYCLE", + "claim_text": "The candidate lifecycle runs PROPOSE, NORMALIZE, CHECK, AUTHORIZE, PREPARE, EXECUTE, OBSERVE, ACCEPT, OUTCOME, CORRECT. It is not a pipeline that succeeds. Every stage can refuse, return unknown, and stop. A failed attempt stays in the history without moving accepted state. This is the conceptual protocol, not the event vocabulary of the current executable packet.", + "claim_text_sha256": "19306c4d186fd84b38f153f5acd8ef7c065d129bdf1649c378dd9833cdfb1990", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-011", + "section": "The executable slice is narrower", + "scope": "paragraph", + "fragment": "LIFECYCLE", + "claim_text": "The pinned public packet is a proposed Instrumented Transition and Survivability Profile tested over synthetic fixtures. Its event vocabulary is PLAN \u2192 AUTHORIZE? \u2192 INVOKE \u2192 COMMIT \u2192 SENSING_EFFECT? \u2192 OBSERVE \u2192 SETTLE. A question mark means the phase is optional only when the pinned instrument profile permits omission. These seven event types exercise a bounded instrument profile. They do not implement the complete ten-stage lifecycle, and SETTLE is not silently renamed ACCEPT.", + "claim_text_sha256": "e16cd70810bb7569a048df1a6d5f49f8aabc99fc3b003ab1b37a48fa7442f244", + "review_source_ids": [ + "EV-PUBLIC-STP-COMMIT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-012", + "section": "The executable slice is narrower", + "scope": "paragraph", + "fragment": "LIFECYCLE", + "claim_text": "Observe. A declared witness measures a postcondition, recording procedure, result type, operating conditions, freshness, and known uncertainty. Accept. A named authority advances the projection only when the required predicates and receipts satisfy policy. Acceptance is never inferred from a tool's success code. Outcome. A later observation records consequence, which can arrive long after acceptance. Correct. A correction opens a new governed transition that names the prior record and states the proposed replacement and reason. It never edits the record it corrects. The replacement changes accepted state only after a new acceptance record satisfies the current policy. CORRECT cannot bypass ACCEPT.", + "claim_text_sha256": "ee780c5705b2ed2b52959773620f7e9ae861f1fc0a37265f9fc59d252b14f4e0", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-013", + "section": "How required checks aggregate", + "scope": "block", + "fragment": "LIFECYCLE", + "claim_text": "The transition gate maps condition FAIL to REFUSE, carries UNRESOLVED through unchanged, and otherwise returns PASS. An empty required set returns UNRESOLVED with reason INVALID_POLICY, never a vacuous pass. Policy may be stricter. Policy may not map an unresolved required predicate to pass.", + "claim_text_sha256": "7dcba09e70f592c80a349e467becf05a608161b68e275d42a2e8b060d331e2ee", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-014", + "section": "How required checks aggregate", + "scope": "paragraph", + "fragment": "LIFECYCLE", + "claim_text": "The public instrument and concurrency reducers test narrower, reason-specific PASS, FAIL, and UNKNOWN outputs, including local NOT_REQUIRED obligation positions. They do not expose this general set aggregator, a mixed false-plus-unknown precedence fixture, or the empty-set INVALID_POLICY rule. The general normalization above is therefore a design target, not a reported test result.", + "claim_text_sha256": "fd2ece349714ed2b46c46c437e7c72fbcd0f65d2abd9a0d4aec4204dd767e7b4", + "review_source_ids": [ + "EV-PUBLIC-STP-COMMIT", + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-015", + "section": "5Measurement before acceptance", + "scope": "paragraph", + "fragment": "OBSERVATION", + "claim_text": "For a scalar quantity, one conservative decision rule could require |delta_hat| + k u_delta \u2264 epsilon, with k, the meaning of u_delta, the interval, and the procedure fixed before evaluation. That rule is an example, not a universal definition. If the required uncertainty or operating conditions are missing, the evaluator returns UNKNOWN rather than NO_CHANGE. The full tuple above is a design proposal.", + "claim_text_sha256": "23fce1ef9cd771eb40e9ddaf14a8f16d2f46a2088e6e05ae76ad0ec6ba53a752", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-016", + "section": "5Measurement before acceptance", + "scope": "paragraph", + "fragment": "OBSERVATION", + "claim_text": "The public instrument profile tests the narrower label NO_CHANGE_DETECTED bound to a declared resolution and observation window; it does not implement the full uncertainty-aware tuple.", + "claim_text_sha256": "95b13287bde69528d5728244325f09a6bbe9aaade341bed310702aec6c3cb2ff", + "review_source_ids": [ + "EV-PUBLIC-STP-COMMIT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-017", + "section": "Forecasts are records about later events", + "scope": "paragraph", + "fragment": "OBSERVATION", + "claim_text": "The architectural consequence is to estimate, freeze, and later score the forecast as one lane, then select an action under a separately declared policy. If the action can change the event distribution, the record must identify that action and either forecast Pr(Y | I_t, action) or preserve a clearly labeled pre-action scenario. Otherwise the intervention can be mistaken for forecast error. This is related to the feedback problem studied as performative prediction [42].", + "claim_text_sha256": "3f36236e105687284b08b70a2e9b2c2f19a0e40ebb318122a6f2cadfa428dedd", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-018", + "section": "Three meanings of calibration that must remain separate", + "scope": "paragraph", + "fragment": "OBSERVATION", + "claim_text": "So this paper uses protocol-calibrated predicate for the project's strict software condition. It is computable from declared inputs. It implies no SI traceability, no calibration hierarchy, and no probability that a system is healthy. The bridge to metrology is procedural. The protocol can carry measurement identity, uncertainty, conditions, and decision rules without collapsing them. It does not compute an uncertainty budget, qualify a laboratory, or establish forecast calibration.", + "claim_text_sha256": "f938d237f90332a8fd2de8776cccb662cf1fcf6dc87fefb845796ee8f136448f", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-019", + "section": "6Cross-language replay parity", + "scope": "block", + "fragment": "REPLAY", + "claim_text": "C serializes nulls, booleans, finite numbers, and strings, preserves array order, sorts object keys recursively, and emits no insignificant whitespace. This is not RFC 8785 canonicalization and makes no claim about Unicode keys outside the pinned corpus, whose keys are ASCII.", + "claim_text_sha256": "acecb5ce03804585e0337a756ab476818a44b7f3069af2972a9bb1bef1bd6e9c", + "review_source_ids": [ + "EV-RL-LEDGER-LIB", + "EV-RL-REPLAY-PY", + "EV-RL-VERIFY-REPLAYERS" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-020", + "section": "6Cross-language replay parity", + "scope": "paragraph", + "fragment": "REPLAY", + "claim_text": "One result strengthens it slightly. Continuous integration pins Node 22.17.1 and Python 3.12.10. I reran both reducers on Node 24.18.0 and Python 3.14.6, two release lines later, and got the identical projection root with all checks holding. That is evidence the parity is not an artifact of one pinned runtime.", + "claim_text_sha256": "1b891c6f067dd63842d09daa5265275dc9bfea341e317f72f5c4ddd5ac2a76bd", + "review_source_ids": [ + "EV-RL-LEDGER-LIB", + "EV-RL-REPLAY-PY", + "EV-RL-VERIFY-REPLAYERS", + "EV-RL-CI-GATES" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-021", + "section": "6Cross-language replay parity", + "scope": "table_row", + "fragment": "REPLAY", + "claim_text": "1Records satisfy a declared structural schema", + "claim_text_sha256": "c415760e240a8af2a6731b0086b65bcdede6496ba2d3e02e907880cd7122e497", + "review_source_ids": [ + "EV-PUBLIC-STP-COMMIT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-022", + "section": "6Cross-language replay parity", + "scope": "table_row", + "fragment": "REPLAY", + "claim_text": "2One implementation repeats its own result", + "claim_text_sha256": "69257484fc563a48b80f29afa2d2f3e9d8b08c928e6b476b1a0d78f34e6a2b37", + "review_source_ids": [ + "EV-PUBLIC-STP-COMMIT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-023", + "section": "6Cross-language replay parity", + "scope": "table_row", + "fragment": "REPLAY", + "claim_text": "3Cross-language ports agree on pinned inputs", + "claim_text_sha256": "3984b5ee23d3835ff87276152df995ab183b89c36040fee2d2593386484ec4ca", + "review_source_ids": [ + "EV-RL-LEDGER-LIB", + "EV-RL-REPLAY-PY", + "EV-RL-VERIFY-REPLAYERS" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-024", + "section": "6Cross-language replay parity", + "scope": "table_row", + "fragment": "REPLAY", + "claim_text": "4Another team reproduces from a minimized packet", + "claim_text_sha256": "27618071e86b47de34cdc7ad46bb0c2eda9e98d7477c0b7b0131329d3652c857", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-025", + "section": "6Cross-language replay parity", + "scope": "table_row", + "fragment": "REPLAY", + "claim_text": "5A new study obtains fresh evidence for the question", + "claim_text_sha256": "9ad96cc1b818919193dba7da78b8dbcdfb024208c024f451c52d46bad1d65bea", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-026", + "section": "6Cross-language replay parity", + "scope": "table_row", + "fragment": "REPLAY", + "claim_text": "6The result stays informative in another system", + "claim_text_sha256": "f4d505aebd70bebeb08b44b88b8601332d0344d2fd34128d07ecd6f1c7c7ff9f", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-027", + "section": "The integrity ladder", + "scope": "paragraph", + "fragment": "REPLAY", + "claim_text": "A privileged custodian can replace an entire unanchored history and recompute every hash. A chain therefore supports consistency checks against a trusted anchor; it does not make storage immutable or prove that additions were the only changes. Resisting replacement needs external checkpoints, signatures, access control, or independent witnesses. The repository's additions-only check states this ceiling in its output rather than implying otherwise: it reports that Git branch protection and an external witness are required to resist history replacement.", + "claim_text_sha256": "32f639c80265989fe4973bcc8ed7d59bc22cd151ce18261aacff0e58014ce605", + "review_source_ids": [ + "EV-RL-GATE" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-028", + "section": "The chain construction", + "scope": "block", + "fragment": "REPLAY", + "claim_text": "D is this protocol's domain separation tag. Its value is arbitrary by construction, in the sense that any distinct constant separates domains equally well, and it is fixed here so that two implementations agree. The profile must also pin the length encoding, duplicate-key handling, number and Unicode rendering, media type, schema version, and the initial value h(-1). The current implementation uses local canonicalizers and does not claim RFC 8785 conformance.", + "claim_text_sha256": "c215a7e813a94911589cd1da2b8cd4b6d1af16484a160256fc091e8e05b6d6f8", + "review_source_ids": [ + "EV-RL-LEDGER-LIB", + "EV-RL-REPLAY-PY", + "EV-RL-VERIFY-REPLAYERS", + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-029", + "section": "Claim-relative evidence surfaces, and the surface this work has not tested", + "scope": "table_row", + "fragment": "REPLAY", + "claim_text": "Artifact-internal structureOne artifact satisfies its declared shape and consistency rules A coherent false record or a faulty rule can pass", + "claim_text_sha256": "2cd2dac02ad664ab3276609d4ee92d5e969f2912a0859fd0b0882509862ed3a9", + "review_source_ids": [ + "EV-PUBLIC-STP-COMMIT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-030", + "section": "Claim-relative evidence surfaces, and the surface this work has not tested", + "scope": "table_row", + "fragment": "REPLAY", + "claim_text": "Cross-implementation replaySeparate implementations produce the same projection from the same bytes A shared specification, fixture, or source record can be wrong in common", + "claim_text_sha256": "9f306b7b6bd6b271d49fa994674a05d58168e42e7f0b3d42829262e4c7192fb8", + "review_source_ids": [ + "EV-RL-LEDGER-LIB", + "EV-RL-REPLAY-PY", + "EV-RL-VERIFY-REPLAYERS" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-031", + "section": "Claim-relative evidence surfaces, and the surface this work has not tested", + "scope": "table_row", + "fragment": "REPLAY", + "claim_text": "Physical observationA declared physical quantity covaries with a declared execution condition Instrument, driver, clock, host, custody, calibration, and inference model", + "claim_text_sha256": "93916ee669996069297638450199d5091afc7183eff0c1aa0837f06735162b56", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-032", + "section": "Claim-relative evidence surfaces, and the surface this work has not tested", + "scope": "paragraph", + "fragment": "REPLAY", + "claim_text": "A physical trace is not unforgeable, and the countermeasure literature on masking, hiding, and noise injection exists precisely because traces can be shaped. A sensor reading is not self-authenticating, since custody, calibration, and the path from probe to record are attackable. A correlation between load and an assertion about behavior is not a mechanism. Supporting a narrow physical predicate would require a declared measurand, calibration reference, operating limits, uncertainty budget, known sensing footprint, and a pre-registered discrimination task with false-accept and false-reject rates. Those conditions have not been met here.", + "claim_text_sha256": "56940125ed86f0f4818687405124a320f1acb29deac8f9b64d5e736ef9c2c6a0", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-033", + "section": "7Evidence state, reported as a vector", + "scope": "paragraph", + "fragment": "EVIDENCE", + "claim_text": "R is the non-stale-label fraction: the share of applicable conditions not labeled stale. An unknown condition counts as non-stale while staying non-decisive, so R is not a measure of fresh evidence about the world. A stronger receipt-coverage measure would need deterministic receipt selection bound to subject, check, generation, and evaluation cut, with ties on sequence returning a typed conflict rather than a choice. The current schema does not carry those bindings, so I make no fixture claim for it.", + "claim_text_sha256": "4101353f6f8f5d79e0c88a9a23607494d553c0535168b2a3309efbebf0d50738", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-034", + "section": "Probability does not select policy", + "scope": "paragraph", + "fragment": "EVIDENCE", + "claim_text": "An infinite representation space does not imply infinitely many behavioral answers. Many encodings can implement the same policy or forecast function. A unique optimizer may also exist on an infinite domain. Where several admissible actions remain incomparable and no authorized preference rule exists, the honest output is the frontier and an unresolved selection, not a hidden default.", + "claim_text_sha256": "ca4142f59bcab13104446baf32cafc7ef3b230c177f7a1a81d6500b4bd0eccf1", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-035", + "section": "A proposed drift vector", + "scope": "paragraph", + "fragment": "EVIDENCE", + "claim_text": "The following design records drift as eight components whose units remain separate. No committed reducer computes the complete vector, so the table is a specification target rather than a reported implementation result.", + "claim_text_sha256": "ae73831e7001294df9cf6b99c277602fc108d823f18eab5fb35a68391475c248", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-036", + "section": "A proposed drift vector", + "scope": "paragraph", + "fragment": "EVIDENCE", + "claim_text": "DRIFT_DETECTED requires a decisive component that the pinned policy marks blocking. DRIFT_NOT_DETECTED means no declared test detected drift. It does not mean drift is absent, and the two readings are not interchangeable.", + "claim_text_sha256": "51be17256a4e724e4b28030300482a0769241a6f2a6cbb5251832480079cf869", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-037", + "section": "Six signals", + "scope": "paragraph", + "fragment": "EVIDENCE", + "claim_text": "The order is normative, not cosmetic. Conditions are reported as protocol calibration, consequence, evidence, integrity, privacy, activity, and a conforming surface renders them in that sequence so that two deployments can be read against each other without remapping. Any total order would serve equally well. This one is fixed so that the choice is not left to each renderer.", + "claim_text_sha256": "9b630b606f0e3e5576d4154732cc3c73de3ef213a0c3f8b0863ad0a6987549f8", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-038", + "section": "Six signals", + "scope": "paragraph", + "fragment": "EVIDENCE", + "claim_text": "Each predicate returns PASS, FAIL, UNKNOWN, STALE, ERROR, or NOT_APPLICABLE under a pinned policy. The public case study renders partial lamps, but it does not implement this general six-predicate decision contract.", + "claim_text_sha256": "df9c201f34a125cf39a5f8fee02f28fe4e28bcc07b5c1c80b8121ee0b381d4fb", + "review_source_ids": [ + "EV-RL-GATE", + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-039", + "section": "8.2 Finite activation, quotient, and frozen-oracle packets", + "scope": "paragraph", + "fragment": "RESULTS", + "claim_text": "The packets share a recorded operator, orchestration platform, prompt, and response schema. Their requested model labels are metadata; common model ancestry is plausible but not established. Agreement is therefore bounded prompt-oracle agreement, not independent validation. The expected activation analysis, quotient report, and BP-001 evaluator report are pinned locally by digests 7c550d125d38, 1b0e78adcac7, and de2c28735762. Appendix C gives the full values and either public packet locators or retained source IDs.", + "claim_text_sha256": "29fef20f4ebeea591860b26a2b62c40a5a2f6e6a10c78120d36e16aaa7dbc2a2", + "review_source_ids": [ + "EV-DEVICE-ANALYSIS", + "EV-DEVICE-RECEIPT", + "EV-TRANSITION-REPORT", + "EV-TRANSITION-RECEIPT", + "EV-BP-PROMPT", + "EV-BP-SUMMARY", + "EV-BP-EVALUATOR", + "EV-BP-RECEIPT", + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-062", + "section": "8.3 Related work boundary", + "scope": "paragraph", + "fragment": "RESULTS", + "claim_text": "Two narrower separations remain. First, UNRESOLVED is a condition about evidence, not a verdict about an action. AgentBound composes three authorities into the lattice Deny < Review < Permit, where Review is a deferred authorization carrying a dischargeable obligation, and satisfying human approval converts it to execution [50]. ESAA is binary, emitting output.rejected on contract violation [49]. Neither carries a state for a required check that is missing, stale, or errored. This design does. UNRESOLVED records that the evidence was not obtained, it is not discharged by an approver, and the aggregation rule in section 4 forbids any policy from mapping it to a pass. An empty required set returns UNRESOLVED with reason INVALID_POLICY rather than a vacuous pass. Second, observation and acknowledgement are separate planes from acceptance. Both cited systems gate before execution and treat the applied effect as the record. This design records submission, acknowledgement, partial execution, commit, failure, timeout, and unknown effect as distinct outcomes, and requires a declared instrument's qualified observation before a named authority may advance accepted state. A tool's success code is not an observation, and an observation is not an acceptance. The record types proposed in sections 4 and 7 are one candidate discharge mechanism for the disclosure and correctness duties named by the Leiden Declaration [51]. These comparisons rest on the arXiv HTML renders of both papers, not on their PDFs or any implementation, and no systematic review was completed. This paragraph positions the work and makes no priority claim.", + "claim_text_sha256": "38f32cc7e2ca54550831e6077e007f7c706e222924cfffea6d8c2d148a0c7089", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-040", + "section": "9.1 The gate", + "scope": "paragraph", + "fragment": "RESULTS", + "claim_text": "Four of the sixteen scripts print a named pass with no numbered hold: the replay driver, the runtime check, the home surface check, and the public explanation check. Their results are therefore omitted from the total of 34. That total is a runner-reported diagnostic inventory, not a coverage measure or a count of everything checked.", + "claim_text_sha256": "26261620178d53cc72aff703ae045e0f2e7e2d3ab3386e0808d3ef72a1df5e94", + "review_source_ids": [ + "EV-RL-GATE" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-041", + "section": "9.2 One source, six incompatible views", + "scope": "paragraph", + "fragment": "RESULTS", + "claim_text": "The repair did not declare one file true. It registered a candidate source, measured every projection against it, stored the mismatch sets by digest, and added mutation tests. Historical regeneration stayed impossible for some consumers because their selection rules were never recorded. The 439-term source remains a candidate inventory, and no check here validates a single definition.", + "claim_text_sha256": "90770fc9f8dc4a20e6aee4e317d97969a7980ec1e11b232b81f6f8525c4a538a", + "review_source_ids": [ + "EV-RL-ATLAS-DATA-CONTRACT", + "EV-RL-ATLAS-RUNTIME-CONTRACT", + "EV-RL-GATE" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-042", + "section": "9.3 Source, deployment, and live bytes", + "scope": "paragraph", + "fragment": "RESULTS", + "claim_text": "The two mismatches were left unresolved rather than rounded away. Production served a homepage without the deferral script the repository carried, and a service worker naming cache aaig-v84 where the repository named aaig-v85. The receipt also records that the reported source commit was an empty string, and that the deployment completed roughly ten minutes before the then-current main commit existed, so that commit could not have been its source. The event decision was DEFER.", + "claim_text_sha256": "ce648398282c1a8787f673739963d8da22cb4a1cb4681d323d5e6b4c309dda69", + "review_source_ids": [ + "EV-RL-OBSERVATION-000001" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-043", + "section": "9.3 Source, deployment, and live bytes", + "scope": "paragraph", + "fragment": "RESULTS", + "claim_text": "A later Git-connected deployment linked provider record to merged source with an exact commit relationship, and sampled two live routes. Both returned 200. Both differed from committed bytes by exactly one declared 214-byte analytics insertion with zero source bytes removed, which is why raw byte identity is recorded as mismatched and the transform relationship as matched. Both routes recorded no content security policy header. That receipt explicitly declines to establish global edge convergence, installed cache state, accessibility, privacy, security, semantic truth, durability, or any future state.", + "claim_text_sha256": "f308aba5939ca6f21985c08a29d1b668f7dd87202f9527b5ba7200ff8319b928", + "review_source_ids": [ + "EV-RL-OBSERVATION-000002" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-044", + "section": "9.3 Source, deployment, and live bytes", + "scope": "paragraph", + "fragment": "RESULTS", + "claim_text": "The service-worker drift from the first receipt stayed open for two cache generations. A third receipt now closes it: production served bytes identical to the committed file, with both naming cache aaig-v87. Closing it required publishing a checkpoint, and the projection root was unchanged at 22852b5a3025, because an observation with no effect must not advance accepted state.", + "claim_text_sha256": "e839307f27610b7de9e30f5336250a80b7aff2a008eaee82c99007560170c78d", + "review_source_ids": [ + "EV-RL-OBSERVATION-000003", + "EV-RL-CHECKPOINT-000013" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-045", + "section": "9.3 Source, deployment, and live bytes", + "scope": "paragraph", + "fragment": "RESULTS", + "claim_text": "The closure is bounded and the receipt says so. It records that the aaig-v85 and aaig-v86 generations were never observed in production and cannot be reconstructed, that one edge was sampled, and that installed client caches were not inspected. The process failure is the part worth keeping: an unresolved finding aged out of view for two versions because nothing scheduled its re-observation. The protocol recorded the gap faithfully and did not close it for me.", + "claim_text_sha256": "903fa2ed67086eb6889bdc7205ed62bf76208b97ada528f4c3fb0e461c984f0c", + "review_source_ids": [ + "EV-RL-OBSERVATION-000003", + "EV-RL-CHECKPOINT-000013" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-046", + "section": "9.4 Finite representations and frozen-oracle results", + "scope": "paragraph", + "fragment": "RESULTS", + "claim_text": "The BP-001 evaluator made 27 exact comparisons: nine frozen result groups across three requested configurations. All 27 matched the oracle, all three response shapes passed, and the exact answer vectors matched pairwise. The exact layer includes the gate, the two forecast optima, historical insufficiency, the Pareto set, absence of a unique action, the unresolved pending state, the encoding distinction, and the five-step record order.", + "claim_text_sha256": "a92d86f310e89387cf3e50e04dff92f33e6f62b5ce1674e22797ab65b0839632", + "review_source_ids": [ + "EV-BP-PROMPT", + "EV-BP-SUMMARY", + "EV-BP-EVALUATOR", + "EV-BP-RECEIPT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-047", + "section": "9.4 Finite representations and frozen-oracle results", + "scope": "paragraph", + "fragment": "RESULTS", + "claim_text": "The semantic layer is deliberately weaker. Its quote links pass deterministic existence checks, but the function-to-quote judgment remains DRAFT_OWNER_REVIEW. Six functions have unambiguous unanimous quote support: gate and forecast separation, freezing before resolution, append-only resolution, cohort calibration, typed unresolved state, and preservation of a Pareto frontier without hidden scalarization. The owner-review map also marks forecast scoring, F04, present in all three responses. One mapped quote says to score the frozen forecast after resolution without naming a declared scoring rule, so strict F04 unanimity remains unresolved and is not promoted to the six-function count. F04 still has direct scoring-rule support in two responses. Query-relative projection and behavioral quotienting also recurred in two of three responses, so functions F01 through F09 each have quote support in at least two. Deterministic replay audit, explicit separation of belief scoring from action optimization, and the general claim ceiling, F10 through F12, were absent from all three. Agreement is therefore signal about recoverable output structure, not evidence that the responses supplied the complete architecture.", + "claim_text_sha256": "3b51d501801e98d3957c21d8a647c3503a4aa5f5e2b4ff00d1aa038f198e4cfa", + "review_source_ids": [ + "EV-BP-PROMPT", + "EV-BP-SUMMARY", + "EV-BP-EVALUATOR", + "EV-BP-RECEIPT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-048", + "section": "10.1 A receipt that contradicts itself", + "scope": "paragraph", + "fragment": "NEGATIVE", + "claim_text": "The schema contract gate passes this file. It validates each object against its own schema and never cross-checks the two. So a receipt can be internally inconsistent on the question of whether anything was authorized, and a green gate will not notice. This is exactly the projection drift the design warns about, occurring inside a single artifact of the system that names it.", + "claim_text_sha256": "1b3e863d1abfc1353c9cb6b344b9b23d9bd9d3dec0015f19608f75318398df37", + "review_source_ids": [ + "EV-RL-OBSERVATION-000001", + "EV-RL-GATE" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-049", + "section": "10.1 A receipt that contradicts itself", + "scope": "paragraph", + "fragment": "NEGATIVE", + "claim_text": "A second instance sits beside it. The two deployment receipts use different status vocabularies. The first is schema 1.0.0 with no declared vocabulary and pass-and-fail values. The second is schema 2.0.0 declaring stp-v1.1-status-axes with values such as SUPPORTED, APPLIED, and MATCHED. No mapping between them exists in the repository, so the two production observations in one stream cannot be compared axis by axis.", + "claim_text_sha256": "c52773b91bae8235a62979b7c331e53a4b8b7217f7249804455baa97a9969fe4", + "review_source_ids": [ + "EV-RL-OBSERVATION-000001", + "EV-RL-OBSERVATION-000002", + "EV-RL-TREE-275D" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-050", + "section": "10.2 A larger-model control recorded fewer unsupported claims than every eligible structured arm", + "scope": "paragraph", + "fragment": "NEGATIVE", + "claim_text": "The larger-model control recorded zero unsupported claims out of 151, matching the excluded P4 count and recording fewer than each eligible structured arm, P1 through P3. Exploratory claim-level Fisher comparisons yield p = 0.0061 against P1, p = 0.0044 against P2, and p = 0.0002 against P3. Because model identity and scaffolding changed together, these comparisons do not identify a causal effect. Within the published aggregate, replacing the model coincided with a lower unsupported-claim count than any eligible scaffold around the weaker model, while P1 through P3 each remained below that weaker model's P0 baseline.", + "claim_text_sha256": "dd7f230659e41b895211c04fe2a2c2d7233ae64a971a2e1ca082aa79d47c17e7", + "review_source_ids": [ + "EV-TYPED-REFUSAL-ARMS", + "EV-TYPED-REFUSAL-STATS" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-051", + "section": "What this experiment does not support", + "scope": "paragraph", + "fragment": "NEGATIVE", + "claim_text": "The generating prompts, the per-run answers, the corpus file, and the preregistration artifact are all absent from the repository. The repository states that six predictions were registered before any arm ran and that three were falsified, and exactly one of the six is quoted anywhere, partially. I could recompute the published aggregate from arms.json and stats.py. I could not reproduce a single original run. No significance criterion was preregistered, so every p value here is post-hoc. The archive also does not publish the question-level or run-level counts needed for a cluster-preserving permutation, bootstrap, or multilevel analysis. The retained evidence bears on auditability and claim discipline by making those limits visible. It does not establish that structure or model choice causally improved accuracy.", + "claim_text_sha256": "1450e9bf0858e888ab294585f6b82912faf12f314444fe3b6ae09f8d5f292af0", + "review_source_ids": [ + "EV-TYPED-REFUSAL-ARMS", + "EV-TYPED-REFUSAL-STATS", + "EV-TYPED-REFUSAL-TREE", + "EV-TYPED-REFUSAL-CORPUS" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-052", + "section": "10.3 A committed registration record and a replication that denied its own doctrine", + "scope": "paragraph", + "fragment": "NEGATIVE", + "claim_text": "Recorded criterion (c) could not be evaluated at all. All six haiku iterative sessions were truncated mid-play by a session limit, so 30 of 36 sessions were scored. The repository record acknowledges the confound rather than hiding it: models ran in sequential blocks with haiku last, so budget exhaustion clusters on the final block. That is missing data with a known mechanism, recorded as missing.", + "claim_text_sha256": "441236645234e0d019488cb12103a9112799030a2f62a1751b06ee8301a4368d", + "review_source_ids": [ + "EV-STABLE-PREREGISTRATION", + "EV-STABLE-DECISION-LOGS", + "EV-STABLE-CELLS" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-053", + "section": "10.3 A committed registration record and a replication that denied its own doctrine", + "scope": "paragraph", + "fragment": "NEGATIVE", + "claim_text": "The replay of all 36 recorded cells runs offline through the published harness, asserts twelve checks, and is wired into the repository gate. It reproduces the denied verdict from the recorded artifacts; it does not reproduce the original model sessions or constitute independent validation.", + "claim_text_sha256": "260d72b2594062a9581067adcb1b5b502e4bb7ac55dc8c0b6f66f1abdcef2d91", + "review_source_ids": [ + "EV-STABLE-REPLAY", + "EV-STABLE-CELLS", + "EV-STABLE-GATE" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-054", + "section": "11What this does not establish", + "scope": "paragraph", + "fragment": "BOUNDARY_SECTION", + "claim_text": "One risk deserves naming on its own. Strict preservation of unknowns can make a system unusable. If unresolved evidence blocks every action, availability and safety trade against each other, and the protocol offers no principled exchange rate between them.", + "claim_text_sha256": "0cbc68900442701d771298ac13c0a47a9a687c85ba01be609520b559124b86f7", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-055", + "section": "A.2 Unknown preservation", + "scope": "paragraph", + "fragment": "BACK", + "claim_text": "For the proposed normalized aggregate over a finite nonempty required set, the result is PASS only when every condition passes, FAIL if any fails, and UNRESOLVED if none fails and any is unknown, stale, or errored. An empty set returns UNRESOLVED with reason INVALID_POLICY. No unresolved required predicate produces a pass. The rule says nothing about predicates omitted from the set. This general precedence rule has not been exercised by a mixed false-plus-unknown public fixture.", + "claim_text_sha256": "0c275515d4376cdfee86061c4930fb564aa21ccdcaa509f37dcc353345d94a06", + "review_source_ids": [ + "EV-PUBLIC-STP-COMMIT", + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-056", + "section": "A.5 Illustrative effect-trace counterexample", + "scope": "paragraph", + "fragment": "BACK", + "claim_text": "Consider two declared effects, alpha and beta. Schedule (alpha, beta) emits the ordered trace [dispatch-alpha, dispatch-beta], while schedule (beta, alpha) emits [dispatch-beta, dispatch-alpha]. If both schedules reduce to the same accepted projection, equal projections still do not entail equal ordered effect traces. This is a counterexample by construction at the specification level. No public fixture in the pinned repository implements it, so it is not a tested result.", + "claim_text_sha256": "6f439988d99e76ac8c8f22732c507ce2b7ce57bb537f2ba7a651bc546b20147d", + "review_source_ids": [ + "EV-PUBLIC-STP-COMMIT", + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-057", + "section": "A.6 Bounded lane balance", + "scope": "block", + "fragment": "BACK", + "claim_text": "A_x arrivals into lane x \u00b7 S_x service capacity of lane x \u00b7 B_x backlog \u00b7 C_x declared finite capacity \u00b7 H declared finite horizon \u00b7 all lane quantities finite, nonnegative, and in one declared unit.", + "claim_text_sha256": "9a27e0780b6ee3e7628adf450c2060ac640b40014fa118ae00bdd83c7a0d59c1", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-058", + "section": "A.6 Bounded lane balance", + "scope": "paragraph", + "fragment": "BACK", + "claim_text": "The autonomy rule in section 3 treats observation, settlement, and recovery capacity as separate constraints. Applying it to a live lane would require declared measurement procedures and a justified rule for projecting beyond the observed window. This project supplies neither. A finite-capacity pass is therefore a local trace result, not evidence that a live lane will keep pace.", + "claim_text_sha256": "37303224d5683ce1f195164620b266e490aa5db957b85d048ca001d7a240be6f", + "review_source_ids": [ + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-059", + "section": "A.6 Bounded lane balance", + "scope": "paragraph", + "fragment": "BACK", + "claim_text": "Where a bounded check is wanted before an estimator exists, the survivability harness substitutes finite reachable-state traversal at a declared horizon. The profile fixes H = 7 rounds and a no-change tolerance of epsilon = 0.02 in the lane's declared unit. Both are conventions. A longer horizon evaluates a different, generally more expensive bounded question, and neither value is derived from anything. Under an exact-H recovery condition, one horizon is not uniformly stronger or weaker than another without additional monotonicity and absorbing-target assumptions. Every disturbed and controlled state must stay legal, preserve the named invariant, and retain the required essential function, and every state in the frontier at round H must be in the recovery target set. Merely reaching the target before H is insufficient unless the required H-frontier condition also holds. An invalid model, an undefined controller, or an exceeded bound returns UNKNOWN rather than a pass.", + "claim_text_sha256": "26c1ec92fbd81bd4a643e591470f25dda9d39302dbfc595d169d11e98bfc505d", + "review_source_ids": [ + "EV-PUBLIC-STP-COMMIT", + "EV-PAPER-CONTEXT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-060", + "section": "A.8 Query factorization and exact kernels", + "scope": "paragraph", + "fragment": "BACK", + "claim_text": "The included source and receipt are the complete public evidence boundary for this result. The receipt points to an earlier local package receipt and binds additional package files that this minimized packet does not include, so a public reader cannot replay the complete local receipt chain from these bytes alone. The local package working directory was not itself a Git repository when the compile was recorded; the public release commit anchors the released copies, not their full pre-release history. Other modules imported by ZeroState.lean are outside A.8 and do not support the quotient claim. Clean-room reconstruction of the pinned package environment remains open.", + "claim_text_sha256": "5ed145abfbf954597964e87473d70f253078dbb15d9a801bf2ed9443b8ffff68", + "review_source_ids": [ + "EV-LEAN-QUERY-SOURCE", + "EV-LEAN-QUERY-RECEIPT" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + }, + { + "claim_id": "FMOTA-V4-CLM-061", + "section": "DReproduction and revision lineage", + "scope": "paragraph", + "fragment": "BACK", + "claim_text": "Clean-clone packet verification is documented in REPRODUCE.md. From a full Git checkout at the release commit or tag, the offline Python and JavaScript verifiers must independently return the same canonical report over the declared file allowlist, raw byte lengths, SHA-256 digests, and payload root. The repository-root and packet-local .gitattributes rules disable line-ending conversion so a normal Windows checkout does not create a false byte mismatch. A clean-clone test with core.autocrlf=true passed before this revision was prepared. This verifies packet identity only; it does not rebuild the PDF, recover excluded inputs, independently replicate an experiment, or establish claim truth, originality, authority, safety, or fitness.", + "claim_text_sha256": "f8ea4cadeaea4218515013c9737b07ec7a61e687159d731ee9e960c41778dc66", + "review_source_ids": [ + "EV-WINDOWS-CLEAN-CLONE-V3", + "EV-REPRODUCE-RUNBOOK", + "EV-PACKET-EOL-RULE" + ], + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?" + ] + } + ] +} diff --git a/research/from-model-output-to-accepted-state/content_a.py b/research/from-model-output-to-accepted-state/content_a.py new file mode 100644 index 0000000..2a894b6 --- /dev/null +++ b/research/from-model-output-to-accepted-state/content_a.py @@ -0,0 +1,388 @@ +"""Paper body, part A: front matter through the lifecycle.""" + +FRONT = r""" +
+
Working paper · owner-review draft
+

From Model Output to Accepted State

+
A typed state boundary for AI-assisted operations
+ +
+ +
+

Abstract

+

A language model produces plausible proposals. A proposal is not an authorization, +a completed action, an observation, or an accepted record of state. I built a +reference implementation, contracts, reducers, and test harnesses that keep those +records separate within the evaluated boundary. I used them on a public software +project and found real defects, including defects in the system itself.

+ +

This paper proposes the State Transition Protocol as a typed boundary around a +probabilistic proposer. A conceptual ten-stage lifecycle separates proposal from +authority, execution, observation, acceptance, and correction. The broader +observation algebra and six-condition reporting surface are also design proposals. +PROPOSED

+ +

The public packet implements a narrower seven-event instrument profile over +synthetic fixtures; it is not a complete implementation of that lifecycle. Within +the tested slice, deterministic reducers rebuild a finite projection from pinned +inputs. TESTED

+ +

Three additional local packets test a finite query representation, +transition-stable refinement, and recovery of frozen answer fields from one compact +prompt. That prompt declared separate gate, forecast, and pending-resolution fields; +all three responses recovered the frozen finite outputs. No real forecast was issued +or resolved. These +local results extend the analysis but are not part of the pinned public commit. +TESTED

+ +

The evidence is finite and I state its limits precisely. Separate JavaScript and +Python ports derived from the same specification and fixture corpus produce the same +projection root over the pinned inputs, and did so on runtime versions two releases +apart from the pinned continuous-integration environment. This is cross-language +replay parity, not independent reproduction. Thirty-four runner-reported numbered +holds across twelve suites are a diagnostic inventory, not a coverage measure. A +data contract found that six public views of one 439-term source had drifted apart, +and that 258 shared terms disagreed on review status. A production observation found +100 of 102 paths matching and left two unresolved rather than rounding them off. +TESTED

+ +

The most useful results are the ones that went against me. In a refusal experiment, +an unstructured larger-model control recorded zero unsupported claims, matching the +excluded P4 arm and below the rates in the eligible P1-P3 structured arms. That +comparison concerns unsupported-claim counts; it does not establish that either +structure or model choice causally improved accuracy. The auditability contribution +lies in making the artifacts, assumptions, and limits behind the comparison +inspectable. An experiment described by its repository as preregistered denied its +own doctrine on a single counterexample. One deployment receipt in this repository +contradicts itself across two fields, and the schema gate passes it. Those are +reported here at full strength.

+
+""" + +SUMMARY = r""" +

1The problem, in plain terms

+ +

An AI system can report that something happened when several +different things may be true. It may have suggested an action. A tool may have +accepted the request. The action may have started and not finished. A sensor may +have returned an unclear reading. A person may have looked at the record without +accepting it. The world may have moved again before anyone asked.

+ +

I hit this while building Delta Atlas, a public set of tools for finding gaps +and unstated assumptions in AI plans. The project grew into static pages, JSON +data, harnesses, and hosted releases. The same confusion kept appearing at every +level. A model answered confidently from a stale copy of the glossary. A test +passed while checking only the records that happened to be loaded. A merge +completed without showing that the host served the merged bytes. A deployment +succeeded without showing that every route had converged. A green panel reported +on synthetic evidence.

+ +

None of that needed a new theory of attention. It needed a boundary. A +transformer maps context to candidate continuations. Once a candidate can call a +tool, move money, change infrastructure, or become the memory the next session +reads, the surrounding system has to answer questions the architecture never +addresses.

+ +

Can a system use a stochastic model as a proposer while rebuilding +its governed state through explicit, typed, replayable transitions, without +mistaking a deterministic procedure for truth?

+ +

The supported answer is narrow and useful. A reference implementation can force +explicit promotion steps and produce identical accepted-state projections from +pinned policy, pinned event bytes, and a pinned reducer version. It can hold +unresolved evidence open instead of rounding it to pass. It can keep +counterexamples and corrections in the record. It cannot show that a source was +honest, that an authority was lawful, that an observation was complete, or that +the chosen policy was wise.

+ +

The public evidence is narrower than the conceptual protocol. It establishes +finite behavior for an instrumented seven-event profile and related harnesses. It +does not establish end-to-end conformance with the proposed ten-stage lifecycle. +TESTED

+ +

Six terms used throughout

+

An output is anything a component emits before validation or acceptance. +An outcome is a later qualified record of consequence. A receipt is a typed record of one check, action, observation, decision, +or correction. A reducer is a deterministic function that rebuilds accepted +state from policy and event history. A projection is that rebuilt view, not +the world. An instrument is whatever acts on or observes a system, with its +own limits. An unaccepted output remains in candidate or receipt space. It is not +silently promoted to governed state or relabeled as an outcome.

+""" + +CLAIMS = r""" +

2How to read the claims

+ +

Confidence in prose is not evidence. Result-bearing empirical and implementation +claims use one of four markers at paragraph, table-row, or block level. Unmarked +prose explains terminology, motivation, or limits and should not be read as an +additional empirical result. The marker sets what you are entitled to conclude.

+ + + + + + + + + + + + + + + + + +
Table 1. Claim markers. A marker states the strongest reading the +evidence supports, not the author's confidence.
MarkerWhat it meansWhat it never means
TESTEDExact behavior over a named finite corpus, reproducible by a stated command.That the behavior generalizes past that corpus.
OBSERVEDA bounded inspection of a named surface at a recorded time.That the surface still looks that way, or that other surfaces match.
PROPOSEDSpecified or reasoned beyond the tested artifact boundary. It may have a + partial fixture, but the marked claim itself is not established.Implemented behavior. Do not cite it as a result.
OPENI do not know, and I say where the evidence stops.That the question is unimportant.
+ +

Implemented, tested, merged, deployed, observed, and accepted are six verbs, not +one. A result can hold several at once. None of them implies the next. Section 11 +states the full claim boundary once, so the rest of the paper does not repeat it +paragraph by paragraph.

+ +

Digests and locators

+

Every result-bearing project artifact referenced here is pinned by SHA-256 over its exact bytes. Digests +appear in text as the first twelve hexadecimal characters, which is enough to +identify a file and short enough to read. Appendix C lists full values, exact +locators, and the applicable verification boundary. Public case-study claims are bound to commit +275d0b3e7474 of the Resilience-Ledger +repository.

+ +
+

Artifact identity is part of the result

+

The Calibration Ledger document I hold does not match the Ledger digest printed +in State Transition Protocol v1.1, and I could not retrieve the bytes that digest +was computed over. I do not know whether the document is a later revision, a +sibling artifact, or an unrelated export. I have not treated the two as equivalent +anywhere in this paper. OPEN

+

That mismatch is evidence, not clutter. An identity check stopped a convenient +substitution that prose alone would have waved through.

+
+""" + +BOUNDARY = r""" +

3The boundary

+ +

Write W(k) for an external world state that is partly hidden, +O for the qualified observations recorded so far, and A(k) +for the accepted projection. A model generates a candidate change stochastically. +The probability it assigns gives the candidate no standing.

+ +
+
delta(k) ~ pi( A(k), O(≤k), H(k) ) candidate generation +A(k) = R( P(g), L(≤k) ) accepted projection
+
pi the candidate-generating distribution, not an +authorization policy  ·  +P(g) pinned policy bytes at generation g  ·  +L(≤k) the valid event prefix through sequence k  ·  +R a pinned reducer version  ·  H(k) whatever context the +model had, which the protocol does not model
+
+ +

The determinism claim is narrower than the word usually suggests. It starts at +identified input bytes and a policy generation, and it ends at a projected record. +It does not cover the model that produced the candidate. It does not cover +undisclosed external state, physical effects, the people involved, the network in +between, or anything that happens afterward.

+ +

Two lanes, one acceptance boundary

+

In plain terms, the deterministic lane decides whether the current record permits +an action. A parallel forecast lane may record uncertainty about a later event. The +two records can inform one another, but neither can silently become the other. A +high forecast probability cannot promote an unresolved gate to pass.

+ +
+
g_t = G( P(g), L(≤t) ) in PASS | UNRESOLVED | FAIL +execute_t = 1 only if g_t = PASS + +f_t = ( forecast_id, claim, event, p, I_t, horizon, resolution_rule, + scoring_rule_id, model_id, policy_id, scenario_id, digest ) +a_s = ( action_id, forecast_id, policy_id, selected_at ) +r_u = ( resolution_id, forecast_id, event, action_id_or_none, outcome, + resolution_time, witness, qualification, digest ) +s_v = ( score_id, forecast_id, resolution_id, scoring_rule_id, + score, computed_at, digest ) +c_w = ( calibration_id, cohort_rule_id, eligible_score_ids, + statistic, computed_at, digest )
+
g_t is the exact gate result at time t  ·  +f_t is a registered forecast frozen before the event resolves  ·  +a_s binds any selected action to the frozen forecast and policy  ·  +r_u is the later qualified resolution, where u is not earlier than t + ·  +s_v records the score computed from the frozen forecast and linked resolution + ·  c_w records a declared cohort statistic over identified eligible scores + ·  +I_t identifies the information available when the forecast was issued + ·  p is a declared probability, not execution authority. The internal +belief of a person or model is not directly observable. The auditable object is the +registered forecast and its later resolution.
+
+ +

The proposed record order is +FREEZE_FORECASTCHOOSE_ACTION → +APPEND_RESOLUTIONSCORE_FORECAST → +UPDATE_CALIBRATION. Before a qualified resolution is appended, the +forecast remains pending. Pending is not zero, false, success, or failure. A reducer +for these proposed records can verify the order, identities, score, and replay without claiming that +the forecast was true when issued or that the selected action was wise. +PROPOSED

+ +

BP-001 used HOLD as a frozen gate value and asked for its execution +output, BLOCK. This paper maps an UNRESOLVED condition to +HOLD as a post-test vocabulary crosswalk. BP-001 established +HOLD to BLOCK only; it did not test the crosswalk. +PROPOSED

+ +
+ {FIG1} +
Figure 1. The proposer sits inside a wider boundary. Only the + tinted span is deterministic. The world is reached through a declared instrument + and is never read directly.
+
+ +

Planes that cannot promote themselves

+ + + + + + + + + + + + +
Table 2. Seven planes. Each answers a different question, and none +of them establishes the next one on its own.
PlaneQuestion it answersWhat it cannot settle alone
External worldWhat is actually the case?It may be hidden, and it moves.
ObservationWhat did a declared instrument report?Whether the report was complete or correct.
ProposalWhat change was suggested?Anything. A suggestion carries no authority.
AuthorityWho permitted which bounded next step?Whether the step ran, or whether it was wise.
ExecutionWhat was attempted, committed, or compensated?Final world state. An acknowledgement is not an effect.
Accepted stateWhat does the named process now recognize?That governed state matches the world.
Derived memoryWhat summary is available later?Evidence. Surviving a restart proves storage, not truth.
+ +

Caches, telemetry, routing models, and interface state are further planes and +stay derivative. A fresh telemetry value grants no authority. A cached summary does +not become a source by persisting. A predictive model does not become an +observation because its average accuracy was good.

+ +

What the threat model covers

+

Mistaken, stochastic, and adversarial proposals. Stale, missing, conflicting, +and correlated evidence. Scope growth. Partial and duplicate effects. Schema +change. Evaluator failure. Replay of an old authorization. Confidential material +reaching a public record. Permanent unknowns that starve availability.

+ +

It also covers ordinary operator error, which is the failure I hit most. A +system can be secure against an outsider and still fail because a person picked +the wrong scope, accepted a misleading threshold, read an acknowledgement as a +resolution, or trusted two witnesses that shared one source.

+ +

The trusted computing base is not one object. It is the policy, the schemas, the +reducers, the canonicalization rules, the authority registry, the keys, the clocks, +the instrument contracts, the evidence stores, and the release process. This +implementation does not provide an independently operated root of trust for all of +them. OPEN

+""" + +LIFECYCLE = r""" +

4A proposed ten-stage lifecycle

+ +

The candidate lifecycle runs PROPOSE, NORMALIZE, +CHECK, AUTHORIZE, PREPARE, +EXECUTE, OBSERVE, ACCEPT, +OUTCOME, CORRECT. It is not a pipeline that succeeds. +Every stage can refuse, return unknown, and stop. A failed attempt stays in the +history without moving accepted state. This is the conceptual protocol, not the +event vocabulary of the current executable packet. +PROPOSED

+ +
+

The executable slice is narrower

+

The pinned public packet is a proposed Instrumented Transition and Survivability +Profile tested over synthetic fixtures. Its event vocabulary is +PLANAUTHORIZE?INVOKE → +COMMITSENSING_EFFECT? → +OBSERVESETTLE. A question mark means the phase is +optional only when the pinned instrument profile permits omission. These seven +event types exercise a bounded instrument profile. They do not implement the +complete ten-stage lifecycle, and SETTLE is not silently renamed +ACCEPT. TESTED

+
+ +
+ {FIG2} +
Figure 2. Proposed lifecycle. Only a valid acceptance record + advances governed state. Refusal and unresolved are recorded at whichever stage + produced them, and both are kept. A correction must pass through a new governed + transition and cannot bypass acceptance.
+
+ +

Propose. A person, model, or program describes a candidate change, naming +its subject, scope, requested operation, policy generation, and consequence class. +Normalize. The candidate becomes one supported schema, and the record keeps +whatever was rejected or lost. Normalization cannot invent a mapping between two +vocabularies that merely look alike. Check. Required predicates evaluate +structure, invariants, evidence, concurrency, budget, and consequence, each +returning a typed result and a stable reason.

+ +

Authorize. An authority receipt binds an actor to an exact subject, +operation, scope, policy, time window, and replay namespace. A full pass returns +permission to prepare and nothing further. Prepare. The system builds a +bounded effect request. This is the last point where an unsafe action can be +stopped without needing to compensate. Execute. A tool attempts the effect, +and the record separates submission, acknowledgement, partial execution, commit, +failure, timeout, and unknown effect.

+ +

Observe. A declared witness measures a postcondition, recording procedure, +result type, operating conditions, freshness, and known uncertainty. Accept. +A named authority advances the projection only when the required predicates and +receipts satisfy policy. Acceptance is never inferred from a tool's success code. +Outcome. A later observation records consequence, which can arrive long after +acceptance. Correct. A correction opens a new governed transition that names +the prior record and states the proposed replacement and reason. It never edits the +record it corrects. The replacement changes accepted state only after a new +acceptance record satisfies the current policy. CORRECT cannot bypass +ACCEPT. PROPOSED

+ +

How required checks aggregate

+ +
+
FAIL if any required predicate is decisively false +UNRESOLVED else if any required predicate is UNKNOWN, STALE, or ERROR +PASS only when every required predicate passes
+
The transition gate maps condition FAIL to REFUSE, +carries UNRESOLVED through unchanged, and otherwise returns PASS. An +empty required set returns UNRESOLVED with reason INVALID_POLICY, +never a vacuous pass. Policy may be stricter. Policy may not map an unresolved +required predicate to pass. PROPOSED
+
+ +

The public instrument and concurrency reducers test narrower, reason-specific +PASS, FAIL, and UNKNOWN outputs, including +local NOT_REQUIRED obligation positions. They do not expose this general +set aggregator, a mixed false-plus-unknown precedence fixture, or the empty-set +INVALID_POLICY rule. The general normalization above is therefore a +design target, not a reported test result. +TESTED

+ +

The rule says nothing about completeness. A system can pass every declared check +while omitting the one that mattered. That is a limit of the predicate set, not of +the aggregation, and no aggregation rule can repair it.

+ +

A short trace

+

A configuration change is proposed. The schema check passes. The current +dependency version cannot be observed, so the compatibility check returns unknown. +A valid authority receipt permits preparation only. The tool accepts the request, +and the postcondition instrument returns a real domain null while settlement stays +unresolved.

+ +

The projection does not advance. The history keeps the proposal, the check +results, the preparation authority, the acknowledgement, the domain null, and the +unresolved settlement. Later a qualified observation identifies the version and +confirms the postcondition, and a new acceptance record advances the projection. +The earlier unknown stays in the history. It is not overwritten, because it was +true when it was recorded.

+""" diff --git a/research/from-model-output-to-accepted-state/content_b.py b/research/from-model-output-to-accepted-state/content_b.py new file mode 100644 index 0000000..a4756e7 --- /dev/null +++ b/research/from-model-output-to-accepted-state/content_b.py @@ -0,0 +1,453 @@ +"""Paper body, part B: observation, replay, evidence state.""" + +OBSERVATION = r""" +

5Measurement before acceptance

+ +

A consequential system has to separate what happened from what was recorded +about what happened. A tool can return success while producing an unexpected +effect. A sensor can return a valid null. A result can be missing because nothing +was sampled, because it fell below a detection limit, or because a stated rule +censored it. Those support different decisions. Storing each as an empty field +destroys the information the next check needs.

+ +

An observation is therefore a tagged record, never a bare value.

+ +
+
DOMAIN_VALUE(value, unit_or_schema, uncertainty) +DOMAIN_NULL(reason) +BELOW_LIMIT(limit, procedure) +NO_CHANGE(quantity, delta_hat, u_delta, epsilon, rule, interval, procedure, conditions) +ABSENT(reason) +CENSORED(rule, bound) +INTERCURRENT(event, strategy)
+
DOMAIN_NULL is a meaningful null the domain supplies, not a +missing field. BELOW_LIMIT records that a procedure could not quantify below a +stated limit, and does not assert zero. NO_CHANGE is a positive measurement +claim and is never inferred from an empty event stream. It records an observed +change estimate, an uncertainty statement, a tolerance, and a pinned decision rule. +ABSENT records that the required observation was not obtained.
+
+ +

For a scalar quantity, one conservative decision rule could require +|delta_hat| + k u_delta ≤ epsilon, with k, the meaning of +u_delta, the interval, and the procedure fixed before evaluation. That +rule is an example, not a universal definition. If the required uncertainty or +operating conditions are missing, the evaluator returns UNKNOWN rather +than NO_CHANGE. The full tuple above is a design proposal. +PROPOSED

+ +

The public instrument profile tests the narrower label +NO_CHANGE_DETECTED bound to a declared resolution and observation +window; it does not implement the full uncertainty-aware tuple. +TESTED

+ +

Condition evaluation is a separate type, and keeping both is the point.

+ +
+
PASS | FAIL | UNKNOWN | STALE | ERROR | NOT_APPLICABLE
+
Applicability is settled first. NOT_APPLICABLE leaves the +required set and every metric denominator. An absent record maps to UNKNOWN, +a known expired record to STALE, and an evaluator crash to ERROR. An +evaluator failure is not an observation of the world and cannot become one.
+
+ +

Clinical trial guidance keeps a related discipline. ICH E9(R1) ties each +objective to a defined estimand and separates intercurrent events from missing +data [12]. A participant's death can make a later value nonexistent rather than +missing. Administrative censoring limits follow-up. A sample may never have been +collected. I borrowed the record-keeping discipline. The protocol supplies no +estimand, no imputation rule, and no sensitivity analysis, and adopting the +vocabulary does not import the statistics.

+ +

An observation feeding a consequential predicate should identify its subject, +the quantity evaluated, the instrument and version, the procedure, the time or +interval, the operating conditions, the result type, the uncertainty, the freshness +rule, and the source artifact. Where sensing changes the subject, the sensing +action gets its own effect record. Reading a database consumes capacity. A medical +test may require an invasive sample. A probe alters a cache. Observation and +sensing effect answer different questions and are recorded separately.

+ +

Forecasts are records about later events

+

A forecast is evaluated only after its declared event has a qualified resolution. +For a binary event with outcome y and forecast p, the Brier +score is a proper scoring rule [39, 40]. If the forecaster's information implies a +true conditional event probability q, its expected value separates into +a reducible error term and irreducible event variance.

+ +
+
BS(p, y) = (p - y)^2 +E_q[BS(p,Y)] = (p - q)^2 + q(1 - q) + +F_mu(p) = E_q[BS(p,Y)] + mu p +arg min F_mu = clip( q - mu/2, 0, 1 )
+
The last two lines are a diagnostic counterexample, not a +recommended objective. With q = 1/2 and mu = 1/2, the uncoupled Brier +objective selects p = 1/2, while the coupled objective selects +p = 1/4. Rewarding the same optimizer for a lower reported risk changes the +report rather than the event probability.
+
+ +

The architectural consequence is to estimate, freeze, and later score the +forecast as one lane, then select an action under a separately declared policy. If +the action can change the event distribution, the record must identify that action +and either forecast Pr(Y | I_t, action) or preserve a clearly labeled +pre-action scenario. Otherwise the intervention can be mistaken for forecast error. +This is related to the feedback problem studied as performative prediction [42]. +PROPOSED

+ +

Three meanings of calibration that must remain separate

+

Forecast calibration is a property of a cohort of comparable, frozen forecasts: +among cases issued near probability r, the observed event frequency +should approach r under the declared grouping and resolution rules +[40, 41]. One resolved forecast has a score. It cannot establish calibration. Model +agreement is recurrence, not calibration, and an unresolved forecast is not part of +a resolved calibration denominator.

+ +

Metrology defines metrological traceability as a property of a measurement +result that relates it to a reference through a documented unbroken calibration +chain, with every link contributing uncertainty [8]. The same source warns that +traceability does not show the uncertainty is fit for a purpose and does not prove +the absence of mistakes.

+ +

A green indicator is not that. A high pass fraction is not that. Two programs +agreeing is not that. Conformity assessment adds a second distinction: a +measurement result is not an accept-or-reject decision, and the gap between them is +governed by stated requirements, uncertainty, acceptance limits, and the tolerated +risk of accepting a nonconforming item [9].

+ +

So this paper uses protocol-calibrated predicate for the project's strict +software condition. It is computable from declared inputs. It implies no SI +traceability, no calibration hierarchy, and no probability that a system is healthy. +The bridge to metrology is procedural. The protocol can carry measurement identity, +uncertainty, conditions, and decision rules without collapsing them. It does not +compute an uncertainty budget, qualify a laboratory, or establish forecast +calibration. PROPOSED

+""" + +REPLAY = r""" +

6Cross-language replay parity

+ +

The National Academies separates computational reproducibility, replication, and +generalization [10]. Reproducibility asks whether the same data, code, and +conditions give consistent results. Replication uses newly obtained data. The +reducer evidence here is reproducibility, and only that.

+ +
+
C( R_js(P, L) ) = C( R_py(P, L) ) + + both roots = 22852b5a3025d4ed7ee1d26cc4efcd51ae2e3e02ba2a20332c2a09827d6462ca
+
C serializes nulls, booleans, finite numbers, and strings, +preserves array order, sorts object keys recursively, and emits no insignificant +whitespace. This is not RFC 8785 canonicalization and makes no claim about Unicode +keys outside the pinned corpus, whose keys are ASCII. TESTED
+
+ +

The JavaScript and Python reducers are ports derived from the same specification +and fixture corpus. Their agreement can catch language-specific, transcription, and +runtime defects. It is not clean-room independence and it is weaker than replication, +because both ports can share a specification error, the same fixtures, and the same +assumptions. It says nothing about whether a recorded event was true.

+ +

One result strengthens it slightly. Continuous integration pins Node 22.17.1 and +Python 3.12.10. I reran both reducers on Node 24.18.0 and Python 3.14.6, two +release lines later, and got the identical projection root with all checks holding. +That is evidence the parity is not an artifact of one pinned runtime. +TESTED

+ + + + + + + + + + + +
Table 3. The validation ladder. Current artifacts reach level three +for selected finite cases. Levels four through six are open.
#LevelStatus here
1Records satisfy a declared structural schemaTESTED
2One implementation repeats its own resultTESTED
3Cross-language ports agree on pinned inputsTESTED
4Another team reproduces from a minimized packetOPEN
5A new study obtains fresh evidence for the questionOPEN
6The result stays informative in another systemOPEN
+ +

Ordering is not causation

+

Sequence numbers, previous digests, and parent references show that named bytes +were linked and that one computation consumed another record. Lamport's +happened-before relation supports partial order without treating wall-clock time as +a complete order [2]. That supports replay, conflict detection, and audit.

+ +

It does not establish a causal effect. If a change ships and the error rate later +falls, the history shows the deployment preceded the measurement. The fall could be +a traffic shift, a cache change, a provider action, a changed measurement +procedure, or something else entirely. The same trace fits several causes. Causal +inference starts from a defined effect and the conditions under which it is +identified [13], and a trustworthy event history supplies none of them.

+ +

The integrity ladder

+

Six claims usually get compressed into the single word verified. They are +separate, and no lower step establishes a higher one.

+ +
    +
  1. A hash link can expose a byte change relative to a trusted commitment that covers the linked event.
  2. +
  3. A signature shows a key signed declared bytes.
  4. +
  5. An authority policy decides whether that key and scope are acceptable.
  6. +
  7. A measurement profile decides whether an observation fits the predicate.
  8. +
  9. An acceptance record advances governed state.
  10. +
  11. A later outcome record describes consequence.
  12. +
+ +

A privileged custodian can replace an entire unanchored history and recompute +every hash. A chain therefore supports consistency checks against a trusted anchor; +it does not make storage immutable or prove that additions were the only changes. +Resisting replacement needs external checkpoints, signatures, access control, or +independent witnesses. The repository's additions-only check states this ceiling in +its output rather than implying otherwise: it reports that Git branch protection and +an external witness are required to resist history replacement. +TESTED

+ +

The chain construction

+

A portable chain profile needs an unambiguous encoding and a domain separator, so +that a digest computed for one purpose is not accepted in another domain. The +construction below is proposed. The public instrument packet instead uses a +fixture-scoped digest chain and does not implement this full portable profile.

+ +
+
b(k) = Canon( event(k) without event_hash ) +h(k) = H( D || len(b(k)) || b(k) || h(k-1) ) + +D = "STP_EVENTCHAIN_SHA256_V1.2_JAKETOPENSOURCE_DELTAATLAS_2026"
+
D is this protocol's domain separation tag. Its value is +arbitrary by construction, in the sense that any distinct constant separates domains +equally well, and it is fixed here so that two implementations agree. The profile +must also pin the length encoding, duplicate-key handling, number and Unicode +rendering, media type, schema version, and the initial value h(-1). The +current implementation uses local canonicalizers and does not claim RFC 8785 +conformance. PROPOSED
+
+ +

Claim-relative evidence surfaces, and the surface this work has not tested

+ +

Every automated check reported in section 9 is software checking software. That +bounds what those checks can establish. Independence is not a global property of a +tool or a count of verifiers. It is relative to a claim and a candidate failure +mode. A shared parser weakens separation for parser failures; a shared specification +weakens separation for specification failures; a shared operator weakens separation +for provenance and execution failures. Those dependencies do not make every +observation equivalent for every question. They identify the failure modes that can +corrupt the observations together.

+ + + + + + + + + + + + +
Table 4. Claim-relative evidence surfaces. Shared dependencies reduce +separation for the named failure modes; no row is a universal rank.
Evidence surfaceClaim it can testShared dependency that limits itStatus here
Artifact-internal structureOne artifact satisfies its declared shape and consistency rulesA coherent false record or a faulty rule can passTESTED
Cross-implementation replaySeparate implementations produce the same projection from the same bytesA shared specification, fixture, or source record can be wrong in commonTESTED
Physical observationA declared physical quantity covaries with a declared execution conditionInstrument, driver, clock, host, custody, calibration, and inference modelOPEN
+ +

The cross-language replay result supports agreement between two execution paths +and can expose language-specific, transcription, or runtime defects. It cannot +detect a specification or fixture error reproduced by both paths. Adding another +port changes the evidence only if it removes a dependency relevant to the failure +mode under examination.

+ +

Power draw, timing, and electromagnetic emission are established side channels, +studied since differential power analysis [36]. A monitor on a machine's power rail +can add separation for some claims about physical execution because it does not +depend on the same process-table report. It does not thereby establish that the +software result was correct, authorized, or caused by the reported operation.

+ +

I built a bounded loop between an agent harness and an Nvidia GPU that sampled +power draw during agent runs. No result from it is part of this paper's +evidence. Several readings shared a sensor, driver, clock, host, and operator. +For failure modes at or upstream of that measurement chain, they are repeated +observations with common dependencies, not independent confirmation. They may still +describe variation across runs, but that is a different claim.

+ +

A physical trace is not unforgeable, and the countermeasure literature on masking, +hiding, and noise injection exists precisely because traces can be shaped. A sensor +reading is not self-authenticating, since custody, calibration, and the path from +probe to record are attackable. A correlation between load and an assertion about +behavior is not a mechanism. Supporting a narrow physical predicate would require a +declared measurand, calibration reference, operating limits, uncertainty budget, +known sensing footprint, and a pre-registered discrimination task with false-accept +and false-reject rates. Those conditions have not been met here. +OPEN

+ +

Additions-only is a protocol rule, not a storage guarantee

+

The rule governs how accepted protocol events are handled: a correction adds a +new record and does not edit the record it corrects. A hash chain can expose +divergence from an anchored prefix, but it cannot prevent a privileged rewrite of an +unanchored history. The rule also does not authorize indefinite retention of raw +evidence or personal data. Data minimization, storage limitation, correction, and +erasure all conflict with a naive permanent log [14]. Three stores keep those +obligations separable.

+ +
+ {FIG3} +
Figure 3. An erasure record can persist in the event history + after the restricted object is destroyed. Hashing a personal record does not + anonymize it, and a deletion receipt does not establish legal compliance.
+
+""" + +EVIDENCE = r""" +

7Evidence state, reported as a vector

+ +

For one subject, one policy generation, and one evaluation cut, let J +be the finite nonempty set of required applicable checks. Every check maps exactly +once into pass, fail, unknown, stale, or evaluator error. Not-applicable checks are +excluded from J and from every denominator.

+ +
+
N_app = P + F + U + S + E applicable +N_dec = P + F decisive + +C = N_dec / N_app decisive evidence coverage +Q = P / N_dec decisive conformance +R = 1 - (S / N_app) non-stale-label fraction
+
A zero denominator returns UNDEFINED, never zero. Policy +must map raw observations such as ABSENT and CENSORED into +the condition partition before C and Q are computed.
+
+ +

Pass and fail contribute equally to C. One failed check out of one +applicable check gives C = 1 and Q = 0, which is complete +decisive coverage of a failed result. If that check is policy-blocking, the +interface shows red. The coverage arithmetic alone does not, and should not.

+ +

R is the non-stale-label fraction: the share of applicable conditions not +labeled stale. An unknown condition counts as non-stale while staying non-decisive, +so R is not a measure of fresh evidence about the world. A stronger +receipt-coverage measure would need deterministic receipt selection bound to subject, +check, generation, and evaluation cut, with ties on sequence returning a typed +conflict rather than a choice. The current schema does not carry those bindings, so +I make no fixture claim for it. PROPOSED

+ +

C is deterministic and verdict-symmetric. Q is deliberately +verdict-sensitive. The system as a whole is not policy-neutral, because policy +chooses the applicable checks, the thresholds, the freshness windows, and the +evidence requirements. For that reason C is never called a probability of +truth, correctness, or safety.

+ +

Probability does not select policy

+

The gate, forecast, and action policy answer different questions. The gate asks +whether an action is admissible. The forecast describes uncertainty over declared +events. The policy decides how to compare safety, heat, latency, opportunity, and +other consequence dimensions. Those dimensions remain a vector unless an +authorized policy supplies a scalarization or another selection rule.

+ +
+
J_j(a | x, B_(x,a)) = sup sum q(e) L_j(a, e; x) + q in B_(x,a) e in E_x + +a dominates b iff J_j(a) ≤ J_j(b) for every j, + and J_j(a) < J_j(b) for at least one j
+
x is the recorded decision context  ·  +E_x is the declared event set in that context  ·  +B_(x,a) is the declared set of admissible event distributions for context x +and action a; when action cannot affect the distribution, B_(x,a) = B_x + ·  L_j is the loss in consequence dimension j  ·  a +Pareto-minimal set can contain several incomparable actions. Choosing one by +weighted sum introduces policy through the weights; it does not reveal a uniquely +correct action [46, 48].
+
+ +

An infinite representation space does not imply infinitely many behavioral +answers. Many encodings can implement the same policy or forecast function. A +unique optimizer may also exist on an infinite domain. Where several admissible +actions remain incomparable and no authorized preference rule exists, the honest +output is the frontier and an unresolved selection, not a hidden default. +PROPOSED

+ +

A proposed drift vector

+

The following design records drift as eight components whose units remain +separate. No committed reducer computes the complete vector, so the table is a +specification target rather than a reported implementation result. +PROPOSED

+ + + + + + + + + + + + + +
Table 5. Proposed drift components. Missing evidence is not zero drift.
ComponentDefinitionRange
D_semunresolved or contested required semantics, over required semantics0 to 1
D_replaycount of distinct valid reducer projections, minus oneinteger ≥ 0
D_scheddistinct projection and effect-trace classes over permitted schedules, minus oneinteger ≥ 0
D_invaccepted prefixes that violate an invariantcount
D_effectunknown effects, duplicate risks, unresolved observation conflictscount
D_capacityper-lane overflow, retaining each lane's unitvector
D_freshrequired stale receipts, over required applicable receipts0 to 1
D_policyunknown or mismatched policy-generation bindingscount
+ +

D_replay and D_sched are defined only after completeness checks. A +missing or invalid required output makes the component UNDEFINED and the aggregate +UNKNOWN. Invalid outputs are never discarded to reach a cleaner number. Capacity is +never summed across incompatible units, because observation, settlement, and +recovery lanes measure different things.

+ +

DRIFT_DETECTED requires a decisive component that the pinned policy +marks blocking. DRIFT_NOT_DETECTED means no declared test detected +drift. It does not mean drift is absent, and the two readings are not +interchangeable. PROPOSED

+ +

Six signals

+
+ {FIG4} +
Figure 4. Proposed six-condition surface. The conditions stay + separate so that a strong + dimension cannot conceal a failing one. Every color carries a text label and a + reason code.
+
+ +

The order is normative, not cosmetic. Conditions are reported as protocol +calibration, consequence, evidence, integrity, privacy, activity, and a conforming +surface renders them in that sequence so that two deployments can be read against +each other without remapping. Any total order would serve equally well. This one is +fixed so that the choice is not left to each renderer. +PROPOSED

+ +

The display labels are shorthand for directional policy predicates. A conforming +record names the predicate so that PASS always has a stable meaning:

+ +
    +
  • PROTOCOL_CHECKS_SATISFIED: all required applicable checks pass and +none is unresolved; an empty required set is UNKNOWN / INVALID_POLICY.
  • +
  • NO_BLOCKING_CONSEQUENCE: complete required consequence checks find +no active blocking consequence; an active one is FAIL, and incomplete +checks are UNKNOWN.
  • +
  • EVIDENCE_SUFFICIENT: a pinned policy maps coverage, conformance, and +receipt requirements to a condition result. A high value of C does not pass +this predicate by itself.
  • +
  • REQUIRED_COMMITMENTS_MATCH: every required named artifact matches +its trusted commitment; a missing commitment is UNKNOWN, not +PASS.
  • +
  • DISCLOSURE_BOUNDARY_HELD: every required observed disclosure path +stays within the declared boundary; an unobserved required path remains +UNKNOWN.
  • +
  • ACTIVITY_EXPECTATION_MET: activity falls within the policy's stated +window and expectation. More activity is not inherently better.
  • +
+ +

Each predicate returns PASS, FAIL, UNKNOWN, +STALE, ERROR, or NOT_APPLICABLE under a pinned +policy. The public case study renders partial lamps, but it does not implement this +general six-predicate decision contract. PROPOSED

+ +

On the consequence signal, red means +NO_BLOCKING_CONSEQUENCE = FAIL: a named blocking consequence is active +under the pinned policy. It can request acknowledgement before another scoped action +begins. Acknowledgement does not make the condition safe, and some red conditions +are non-waivable and require refusal. +The public educational interface does not claim to control a host chat or an +external tool. Without a durable, enforceable gate the indicator is informational, +and I say so rather than implying enforcement.

+ +

The record separates NOTIFIED, PRESENTED, +ACKNOWLEDGED, AUTHORIZED, OVERRIDDEN, +INTERVENED, and RESOLVED. Understanding is never inferred +from a click. Intervention does not prove an adverse effect was prevented. +Resolution requires its own observation.

+""" diff --git a/research/from-model-output-to-accepted-state/content_c.py b/research/from-model-output-to-accepted-state/content_c.py new file mode 100644 index 0000000..a6b04cd --- /dev/null +++ b/research/from-model-output-to-accepted-state/content_c.py @@ -0,0 +1,1111 @@ +"""Paper body, part C: results, negative results, boundary, guide, back matter.""" + +RESULTS = r""" +

8Methods and artifact scope

+ +

8.1 Evidence units and pinned sources

+ +

This paper is a bounded artifact audit and a single-project case study. The +primary implementation evidence is pinned to commit +275d0b3e7474ef58456c82a042163567cd12122f of the public +Resilience Ledger repository. I reran its public gate on Node 24.18.0 and Python +3.14.6. Continuous integration declares Node 22.17.1 and Python 3.12.10. The same +recorded projection root was produced by separate JavaScript and Python +implementations derived from one specification and fixture corpus. This is +cross-language replay parity, not clean-room or external replication.

+ +

The protocol suites use finite event files, policies, fixtures, and rejection +mutations as their units. Their results are exact only for those bytes and that +code. Deployment observations use paths or routes sampled at named times. Interface +checks establish source or rendering structure and make no claim about reader +comprehension. These evidence families are reported separately because their +denominators are not interchangeable.

+ +

The Typed Refusal reanalysis uses a hand-decomposed claim as its unit. Its archive +reports twelve frozen questions and three runs per P0 through P4 arm, plus a separate +larger-model control, but publishes only pooled arm totals. The exact model version, +generating prompts, answers, run-level data, question-level data, corpus bytes, and +preregistration record are absent. Wilson intervals and Fisher exact tests were +recomputed from data/arms.json by data/stats.py; they are +exploratory claim-level summaries under a working independence assumption. The +claims are clustered within questions and runs, so those intervals and p values do +not establish arm-level precision or significance.

+ +

The 2026-07-17 replication declares 36 sessions, of which 30 were scored after six +final-block sessions were truncated. Its registration record and decision logs are +public at commit 77408db59cad3f968ac9ba5a0c0c6689a90e80d4 +of JakeTOpenSource/the-stable, and its recorded cells were replayed +offline. The inspected public history does not independently establish that the +registration file predates data collection, so I treat it as a committed +registration record rather than verified prospective registration. The Typed +Refusal aggregates are pinned separately at commit +721a824c9f735d3972d720b41685469a1020fa91 of +JakeTOpenSource/typed-refusal-harness. No external evaluator selected, +ran, or scored these experiments, and no qualified instrument or live consequential +adapter was evaluated.

+ +

8.2 Finite activation, quotient, and frozen-oracle packets

+ +

Three local owner-review packets test the newer mathematical layer. The Generic +Device Activation Fixture enumerates 151 synthetic trace prefixes of length at most +ten. It evaluates seven declared queries against ten candidate representation +fields, exhaustively checks all 1,023 nonempty candidate subsets, and retains a +collision witness whenever a representation merges records whose query answers +differ. Separate Python and JavaScript generators produce the same frozen dataset; +the exhaustive subset analysis is then performed in Python. The result is exact +only for those traces, queries, fields, and transition rules.

+ +

The transition-stable quotient packet uses the same 151 records and ten declared +events. Each state-event pair is either enabled, advancing to its child trace, or +refused, remaining at the current trace. This gives 1,510 finite transitions. A +partition begins from a declared query signature and repeatedly splits any class +whose members differ in event status or successor class. Separate Python and +JavaScript analyzers produce byte-identical canonical reports. This is a finite +application of established sequential-machine refinement [43-45], not a new +minimization theorem.

+ +

The frozen-oracle packet fixed one prompt, one response schema, a nine-group +oracle, and a twelve-function semantic rubric before three responses were requested. +The responses were requested under gpt-5.6-sol/high, +gpt-5.6-sol/low, and gpt-5.6-terra/high configurations. +Those labels are request metadata because the retained responses contain no runtime +model attestation, model-build digest, seed, or sampling parameters. Responders saw +the prompt and schema, not the oracle or rubric. The name means only that the oracle +and rubric were fixed before collection and withheld from responders; no blinded +assignment or blinded assessment occurred. Exact fields were compared with the +oracle. Semantic recurrence was mapped separately and required a verbatim quote from +the corresponding response. That map remains +DRAFT_OWNER_REVIEW.

+ +

The packets share a recorded operator, orchestration platform, prompt, and response +schema. Their requested model labels are metadata; common model ancestry is plausible +but not established. Agreement is therefore bounded prompt-oracle agreement, +not independent validation. The expected activation analysis, quotient report, and +BP-001 evaluator report are pinned locally by digests +7c550d125d38, +1b0e78adcac7, and +de2c28735762. Appendix C gives the full values and +either public packet locators or retained source IDs. TESTED

+ +

8.3 Related work boundary

+ +

The design joins established lines of work rather than treating their components +as new. Causal ordering and state-machine replication [2, 6], event sourcing and +transaction or compensation boundaries [3-5], runtime assurance [7], metrology +and conformity assessment [8, 9, 11], and reproducibility, estimands, and causal +inference [10, 12, 13] provide the main technical background. Canonicalization, +transparent logs, provenance, and software supply-chain records inform the evidence +identity boundary [15-20]. Accessibility, assurance-case, status-condition, and +interchange specifications inform the reporting surface [18, 27, 31-34].

+ +

Proper scoring and empirical forecast calibration supply the probabilistic lane +[39-41]. Performative prediction supplies the warning that a decision can change +the distribution it is later scored against [42]. Sequential-machine equivalence +and partition refinement supply the finite transition-stable construction [43-45]. +Convex and vector optimization supply the distinction between a Pareto frontier and +a policy-selected point [46]. Robust convex optimization supplies the +worst-case-over-a-declared-uncertainty-set pattern [48]. Mathlib's pinned +Function.FactorsThrough definition supplies the formal vocabulary for +query-relative sufficiency [47]. These are established sources used to express the +proposal; none validates the case study.

+ +

Two systems published in 2026 share this design's spine and are named directly. +ESAA has agents emit structured intentions that a deterministic orchestrator +validates and persists to an append-only log, separating agent cognition from state +mutation through constrained outputs and replay-based verification [49]. AgentBound +evaluates each proposed action using three independent authorities and emits +cryptographically verifiable governance receipts binding an action to the exact +delegation and policy artifacts that governed it, supporting independent replay [50]. +Append-only event history, deterministic replay, receipt-bound policy identity, and +refusing to let a model mutate state directly are established work, not contributed +here.

+ +

The Leiden Declaration states the corresponding obligation from the research side +[51]. Published in June 2026 and endorsed by the International Mathematical Union, it +requires transparent disclosure of automated tools in a stated section of a paper, and +it holds that the responsibility for correctness, for the adequacy of the arguments, +and for the completeness and accuracy of citations remains exclusively with the human +authors. Credit and responsibility belong to people rather than to automated systems. +The declaration states values and principles rather than formats, and it specifies no +artifact for discharging those duties beyond a disclosure section and existing peer +review. No conformance with the declaration is claimed here, and the declaration does +not endorse this work.

+ +

Two narrower separations remain. First, UNRESOLVED is a condition about evidence, +not a verdict about an action. AgentBound composes three authorities into the lattice +Deny < Review < Permit, where Review is a deferred authorization carrying a +dischargeable obligation, and satisfying human approval converts it to execution [50]. +ESAA is binary, emitting output.rejected on contract violation [49]. +Neither carries a state for a required check that is missing, stale, or errored. This +design does. UNRESOLVED records that the evidence was not obtained, it is not +discharged by an approver, and the aggregation rule in section 4 forbids any policy +from mapping it to a pass. An empty required set returns UNRESOLVED with reason +INVALID_POLICY rather than a vacuous pass. Second, observation and +acknowledgement are separate planes from acceptance. Both cited systems gate before +execution and treat the applied effect as the record. This design records submission, +acknowledgement, partial execution, commit, failure, timeout, and unknown effect as +distinct outcomes, and requires a declared instrument's qualified observation before a +named authority may advance accepted state. A tool's success code is not an +observation, and an observation is not an acceptance. The record types proposed in +sections 4 and 7 are one candidate discharge mechanism for the disclosure and +correctness duties named by the Leiden Declaration [51]. These comparisons rest on the +arXiv HTML renders of both papers, not on their PDFs or any implementation, and no +systematic review was completed. This paragraph positions the work and makes no +priority claim. OPEN

+ +

Privacy, security, financial, medical-device, and AI-governance sources are used +as domain constraints or comparison points [14, 21-26, 28-30]. They do not +establish compliance. The transformer, biological-mechanics, and side-channel +sources supply limited architecture or measurement context [1, 35, 36], not +validation of this protocol.

+ +

Hamilton-Zero makes one scientific boundary concrete. Its architecture +analytically preserves a variational upper bound, while the authors warn that a +finite-sample Monte Carlo estimate can appear below the true ground-state energy +because of estimator noise or mixing bias [38]. A guarantee on the represented +state therefore does not automatically attach to the sampled estimate or the +published comparison. This is a domain example, not validation of this protocol.

+ +

With his permission, Jake Macdonald's OpenGoldenRatio (OGR) v0.1 +is cited as parallel related work [37]. After reviewing this draft, Macdonald +helped sharpen the comparison: STP follows governed transformation from candidate +output toward accepted state, while OGR centers containment and governed relations +among actors or agents. His contribution here was review and clarification of that +comparison. He did not contribute code, data, experiments, or authorship, and OGR +is not evidence that STP works.

+ +

9Results

+ +

Five result families are kept apart because their denominators and their meaning +differ. Protocol conformance yields exact finite outputs. Agent behavior yields +bounded empirical observations. Interface work yields structural conformance and no +comprehension claim. Live operations yield bounded observations at named times. +Finite mathematical packets yield exact local results over declared traces, query +sets, candidate fields, transition semantics, and prompt-oracle comparisons.

+ +

9.1 The gate

+ +

One command runs the public suite. It executes sixteen scripts and prints +thirty-four numbered holds across twelve named suites, with every denominator equal +to its numerator.

+ + + + + + + + + + + + + + + + + + +
Table 6. Public gate composition at commit +275d0b3e7474, from node governance/harnesses/run-all.js.
SuiteHoldsWhat the strongest hold in it establishes
Ledger falsification10Ten mutations of the event history are rejected
Governance chain516 event files, 6 stream chains, 12 checkpoints bind
Authority falsification4Four forged authority paths are rejected
Cross-language replay parity3JavaScript and Python implementations derived from one specification and fixture corpus produce the same root
Append-only history2Git comparison permits additions only
Privacy boundary285 records scanned, 3 synthetic leak canaries caught
Atlas data sync2Six projections match baseline, 4 mutations rejected
Six-signal public surface2Six conditions render with non-color cues
Schema contract1Schemas, validators, and envelopes agree
Atlas data materialization1Three profiles replay, three malformed inputs rejected
Atlas foundational repair1The repaired foundation still holds
Authority1The authority profile evaluates its seven conditions
Twelve suites34All holding at this commit
+ +

Four of the sixteen scripts print a named pass with no numbered +hold: the replay driver, the runtime check, the home surface check, and the public +explanation check. Their results are therefore omitted from the total of 34. That +total is a runner-reported diagnostic inventory, not a coverage measure or a count +of everything checked. TESTED

+ +

9.2 One source, six incompatible views

+ +

The candidate source holds 439 terms and labels every one of them reviewed. Six +public projections were measured against it. The count drift was the least of it.

+ + + + + + + + + + + + + +
Table 7. Projection drift against the 439-term candidate source. +Identical counts shared records matching on every field. Status differs +counts shared records whose review status disagrees.
ProjectionTermsSharedIdenticalAbsentExtraStatus differs
ask-inline-data435435040258
ground-truth-inline-data435435040258
explore-inline-data43543512540258
gap-check-inline-data433433060256
canon-json-projection21420402351026
canon-markdowntext document: pins a canonical text digest only, with no per-term comparison
+ +

Three findings matter more than the counts. First, the source calls all 439 terms +reviewed while three projections report 258 candidate and 177 reviewed, so the +authoritative label was contradicted by every consumer. Second, in four of the five +comparable projections not one shared record matched on every field. Third, the +canon projection contains ten identifiers with no counterpart in the source at all, +which is divergent provenance rather than staleness.

+ +

The repair did not declare one file true. It registered a candidate source, +measured every projection against it, stored the mismatch sets by digest, and added +mutation tests. Historical regeneration stayed impossible for some consumers because +their selection rules were never recorded. The 439-term source remains a candidate +inventory, and no check here validates a single definition. +TESTED

+ +

9.3 Source, deployment, and live bytes

+ +

The project once shipped by manual upload, which left the relation between +repository and production unclear. The first recorded reconciliation compared every +deployable path.

+ + + + + + + + + + + +
Table 8. Production observation +34bde4ec2eb4, recorded 2026-08-11.
MeasureValueReading
Deployable paths checked102the declared set
Returned HTTP 200102all reachable
Missing0
Semantic matches100
Semantic mismatches2index.html and sw.js
Line-ending-only differences1CITATION.cff
+ +

The two mismatches were left unresolved rather than rounded away. Production +served a homepage without the deferral script the repository carried, and a service +worker naming cache aaig-v84 where the repository named +aaig-v85. The receipt also records that the reported source commit was +an empty string, and that the deployment completed roughly ten minutes before the +then-current main commit existed, so that commit could not have been its source. +The event decision was DEFER. OBSERVED

+ +

A later Git-connected deployment linked provider record to merged source with an +exact commit relationship, and sampled two live routes. Both returned 200. Both +differed from committed bytes by exactly one declared 214-byte analytics insertion +with zero source bytes removed, which is why raw byte identity is recorded as +mismatched and the transform relationship as matched. Both routes recorded no +content security policy header. That receipt explicitly declines to establish global +edge convergence, installed cache state, accessibility, privacy, security, semantic +truth, durability, or any future state. OBSERVED

+ +

The service-worker drift from the first receipt stayed open for two cache +generations. A third receipt now closes it: production served bytes identical to the +committed file, with both naming cache aaig-v87. Closing it required +publishing a checkpoint, and the projection root was unchanged at +22852b5a3025, because an observation with no effect must +not advance accepted state. OBSERVED

+ +

The closure is bounded and the receipt says so. It records that the +aaig-v85 and aaig-v86 generations were never observed in +production and cannot be reconstructed, that one edge was sampled, and that installed +client caches were not inspected. The process failure is the part worth keeping: an +unresolved finding aged out of view for two versions because nothing scheduled its +re-observation. The protocol recorded the gap faithfully and did not close it for me. +OPEN

+ +

9.4 Finite representations and frozen-oracle results

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
Table 9. One layer in plain language, formal language, finite result, +and claim ceiling. Every result is local to the retained owner-review packet.
Plain statementFormal objectFinite resultClaim ceiling
A forecast is not permission.execute = 1 only if g = PASS, for every +p.All three BP-001 responses returned BLOCK when +the gate was held.Exact prompt-oracle agreement, not operational enforcement.
In the frozen objective, coupling the report to its reward moves the optimum.argmin E[(p-Y)^2] = 1/2; adding (1/2)p gives +p* = 1/4.All three responses recovered both frozen values.A synthetic algebraic counterexample, not real-world calibration.
Current state is sufficient only for named questions.r(x)=r(y) implies sigma_Q(x)=sigma_Q(y).Across 151 traces and seven queries, all 1,023 nonempty subsets of ten fields +were checked. One five-field set was sufficient. It realized 47 tuples for 33 query +classes.Set-minimal within ten supplied fields, not globally minimal. The 47 tuples +overrefine the exact 33-class query quotient.
A useful summary must also survive permitted next steps.x equiv_Q y only when every permitted continuation preserves equal +query answers.The full seven-query partition stayed 33 to 33. Removing +nextPermittedActions began at 18 classes and refined to the same 33-class +partition in one round.Exact for one finite graph, ten events, and declared refusal semantics.
Several actions can remain equally admissible without being equal.Keep every nondominated risk vector until policy supplies a preference rule.All three responses retained A, B, C as Pareto-minimal and refused +to invent a unique action.Agreement on the frozen example, not a universal risk policy.
+ +

The BP-001 evaluator made 27 exact comparisons: nine frozen +result groups across three requested configurations. All 27 matched the oracle, all +three response shapes passed, and the exact answer vectors matched pairwise. The +exact layer includes the gate, the two forecast optima, historical insufficiency, +the Pareto set, absence of a unique action, the unresolved pending state, the +encoding distinction, and the five-step record order. +TESTED

+ +

The semantic layer is deliberately weaker. Its quote links pass deterministic +existence checks, but the function-to-quote judgment remains +DRAFT_OWNER_REVIEW. Six functions have unambiguous unanimous quote +support: gate and forecast separation, freezing before resolution, append-only +resolution, cohort calibration, typed unresolved state, and preservation of a +Pareto frontier without hidden scalarization. The owner-review map also marks +forecast scoring, F04, present in all three responses. One mapped quote says to +score the frozen forecast after resolution without naming a declared scoring rule, +so strict F04 unanimity remains unresolved and is not promoted to the six-function +count. F04 still has direct scoring-rule support in two responses. Query-relative +projection and behavioral quotienting also recurred in two of three responses, so +functions F01 through F09 each have quote support in at least two. Deterministic +replay audit, explicit separation of belief scoring from action optimization, and +the general claim ceiling, F10 through F12, were absent from all three. Agreement +is therefore signal about recoverable output structure, not evidence that the +responses supplied the complete architecture. +OPEN

+ +

The model labels are retained exactly as requested but not promoted to runtime +identity. The runs share material common causes, including the prompt, schema, +orchestration platform, and possible training or system dependencies. No result in +this subsection is described as independent replication, human understanding, +truth, novelty, safety, or forecast calibration.

+""" + +NEGATIVE = r""" +

10The results that went against me

+ +

These are the most informative findings in the project. Each one narrowed a claim +I had already made.

+ +

10.1 A receipt that contradicts itself

+ +

The first deployment receipt reports its status twice. The envelope records +evidence: VERIFIED and authority: UNVERIFIED. The payload +record inside the same file reports evidence: PASS and +authority: PASS_WITH_LIMITS. Five other axes agree. Two do not, and +they disagree about whether authority was established.

+ +

The schema contract gate passes this file. It validates each object against its +own schema and never cross-checks the two. So a receipt can be internally +inconsistent on the question of whether anything was authorized, and a green gate +will not notice. This is exactly the projection drift the design warns about, +occurring inside a single artifact of the system that names it. +TESTED

+ +

A second instance sits beside it. The two deployment receipts use different status +vocabularies. The first is schema 1.0.0 with no declared vocabulary and pass-and-fail +values. The second is schema 2.0.0 declaring stp-v1.1-status-axes with +values such as SUPPORTED, APPLIED, and MATCHED. +No mapping between them exists in the repository, so the two production observations +in one stream cannot be compared axis by axis. OPEN

+ +

10.2 A larger-model control recorded fewer unsupported claims than every eligible structured arm

+ +

The Typed Refusal archive reports unsupported-claim aggregates across five arms +of increasing structure, against a corpus of United States Code Title 29 identified +by digest 188ab1c50a46. A sixth arm, an off-model +control, was a larger model given the corpus and no structure at all. The corpus +bytes and original runs are not in the public archive.

+ + + + + + + + + + + + + +
Table 10. Typed Refusal Harness. Rates are unsupported claims per 100 +hand-decomposed claims. Wilson intervals and two-tailed Fisher exact tests against +P0 are exploratory claim-level summaries under a working independence assumption; +question and run clustering could not be modeled from the published aggregate.
ArmStructure addedUnsupportedClaimsRate95% CIExploratory p vs P0
P0corpus only, no index, no tool209022.214.9-31.8baseline
P1hash-verified snapshot, single-unit pull5875.72.5-12.80.0021
P2typed rejections as final answers61055.72.6-11.90.0012
P3byte receipt required per quotation91009.04.8-16.20.0148
P4frozen answers with inline receipts0990.00.0-3.7excluded
Controllarger model, corpus only, no structure01510.00.0-2.5not tested
+ +

The eligible structured-arm ordering is non-monotone: P1 and P2 each recorded 5.7 +unsupported claims per 100, while P3 recorded 9.0. Pairwise two-tailed Fisher exact +tests on the published claim-level aggregates give p = 1.000 for P1 versus P2, +p = 0.579 for P1 versus P3, and p = 0.428 for P2 versus P3. The three Wilson +intervals overlap. Under the same working-independence assumption, these exploratory +summaries do not support ranking P1, P2, and P3 and do not establish equivalence +among them.

+ +

At the claim level, the archived aggregates yield p = 0.0021 for P1, p = 0.0012 +for P2, and p = 0.0148 for P3 against P0. No decision threshold was registered, and +the independence assumption is not supported by the clustered design, so these +values are not treated as confirmatory or as arm-level significance tests. P4's +zero count is descriptive only. Its answers were supplied by construction, and one +of its three runs ignored the cards, so the arm is excluded from accuracy claims.

+ +

The larger-model control recorded zero unsupported claims out of 151, matching +the excluded P4 count and recording fewer than each eligible structured arm, P1 +through P3. Exploratory claim-level Fisher comparisons yield p = 0.0061 against P1, +p = 0.0044 against P2, and p = 0.0002 against P3. Because model identity and +scaffolding changed together, these comparisons do not identify a causal effect. +Within the published aggregate, replacing the model coincided with a lower +unsupported-claim count than any eligible scaffold around the weaker model, while +P1 through P3 each remained below that weaker model's P0 baseline. +OBSERVED

+ +
+

What this experiment does not support

+

The generating prompts, the per-run answers, the corpus file, and the +preregistration artifact are all absent from the repository. The repository states +that six predictions were registered before any arm ran and that three were +falsified, and exactly one of the six is quoted anywhere, partially. I could +recompute the published aggregate from arms.json and +stats.py. I could not reproduce a single original run. No significance +criterion was preregistered, so every p value here is post-hoc. The archive also +does not publish the question-level or run-level counts needed for a +cluster-preserving permutation, bootstrap, or multilevel analysis. The retained +evidence bears on auditability and claim discipline by making those limits visible. +It does not establish that structure or model choice causally improved accuracy. +OPEN

+
+ +

10.3 A committed registration record and a replication that denied its own doctrine

+ +

A separate experiment is described by its repository as preregistered. The pinned +repository contains a registration file naming three criteria and decision logs for +a test of the claim that live per-probe feedback eliminates the premature nulls that +committed plans produce. The design was two rounds by three models by three +replicates by two arms, for 36 sessions. The inspected public history does not +independently prove that the registration file predates those sessions.

+ + + + + + + + + +
Table 11. Replication of 2026-07-17. Verdict: doctrine denied. +Token counts are block totals of output tokens over six sessions per cell group.
ModelOne-shotIterativeRatioScored result
claude-opus-4-85,56735,1526.3×6/6 clean one-shot; 1 premature null iterative
claude-sonnet-515,67348,8003.1×12/12 scored as calibrated under the experiment rubric
claude-haiku-4-538,80941,3991.1×3 clean, 3 premature one-shot; iterative arm lost
+ +

Recorded criterion (a) was satisfied, though not by the model that motivated the +doctrine. Recorded criterion (b) failed, and that failure denied the doctrine: one opus iterative +session produced a genuine premature null, skipping the domain floor extreme after +seven matching probes sat in front of it. The recorded bar was zero +counterexamples, and one is enough.

+ +

Recorded criterion (c) could not be evaluated at all. All six haiku iterative sessions were +truncated mid-play by a session limit, so 30 of 36 sessions were scored. The +repository record acknowledges the confound rather than hiding it: models ran in +sequential blocks with haiku last, so budget exhaustion clusters on the final block. +That is missing data with a known mechanism, recorded as missing. +OBSERVED

+ +

Two things survived. Sonnet was scored as calibrated under that experiment's +rubric in 12 of 12 sessions across both arms, which the document itself downgrades +to a rubric-specific signal rather than a capability benchmark. That label is not +empirical forecast calibration as defined in section 5 and is not a +protocol-calibrated predicate. And all four valid premature nulls fell on the same round, with zero on +the other across its 15 valid sessions, which points to a shared failure pattern +across models that per-probe feedback did not close.

+ +

The replay of all 36 recorded cells runs offline through the published harness, +asserts twelve checks, and is wired into the repository gate. It reproduces the +denied verdict from the recorded artifacts; it does not reproduce the original model +sessions or constitute independent validation. +TESTED

+ +

10.4 Smaller corrections

+
    +
  • Absolute privacy language on the public site exceeded what the tests covered. +The page said nothing leaves while the host loaded analytics. The claim was split +into local input analysis and aggregate page telemetry.
  • +
  • The offline cache list omitted JavaScript that cached tools required, so a fresh +offline profile could hold a page without the code to run it. The list was closed +over its dependencies and installation became fail-closed.
  • +
  • A data-only overlay still carried HTML through the parser into a rendering sink. +Escaping plus a full parser-to-sink test closed the demonstrated path.
  • +
  • The privacy scanner reports 85 records. The tree holds 87 files of the scanned +types, and the harness hard-codes two self-exemptions. The number is correct and +the exemptions are worth stating.
  • +
  • The home surface check confirms the string 160 recorded cross-domain +primitives appears in the page. The data file does contain 160 entries, but +the check is a string match, not a cross-count, and would pass if both drifted +together.
  • +
+ +
+ {FIG5} +
Figure 5. The repair pattern used in the corrections reported + above. In these cases, the missing step was a regression gate.
+
+""" + +BOUNDARY_SECTION = r""" +

11What this does not establish

+ +

Stated once, in full, so that no section has to hedge itself.

+ +

Nothing here establishes that a recorded event was true. A false sensor produces +a well-formed receipt. A valid credential holder makes a bad decision. Two programs +agree because they share one mistake. Comparison against a previously trusted digest +reveals a byte difference without showing the earlier bytes described reality.

+ +

Nothing here establishes causation, lawful authority, regulatory compliance, +statistical reliability, general safety, or independent validation. The reducers +share a specification and may share its errors. Most fixtures are synthetic. Most +witnesses are not organizationally independent. There is no live authority service +with independently managed keys, trusted time, revocation, and atomic single-use +consumption. There is no durable non-equivocating log for a threat model that +includes full history replacement. There is no general proof of liveness, fairness, +concurrency safety, or survivability. There is no preregistered human study, and no +external replication of the architecture.

+ +

The case study is one project's repair history, produced by one person, largely +in one computing environment, on data and interfaces that changed while the work +proceeded. It may not transfer.

+ +

The single-operator design is a separate validity threat. I selected and +classified source artifacts, chose fixtures and checks, wrote the manuscript claims, +and applied the claim markers to my own work. Those controls make the decisions +inspectable, but they do not make them independent: the same judgment can preserve +one error across evidence selection, fixture design, testing, prose, and marker +assignment.

+ +

The activation and quotient results are exhaustive only inside a synthetic +finite model. Their minima depend on the supplied candidate fields and declared +queries. Their stable partition depends on the 151 trace prefixes, ten events, +enabled-or-refused transition rule, and finite continuation graph. They establish +no fact about an iPhone, another device, an open environment, an unmodeled event, or +a richer query. A five-field sufficient representation is not the unique data +structure for the behavior, and its 47 realized tuples are not the exact 33-class +behavioral quotient.

+ +

The frozen-oracle packet is a three-response check, not a model +benchmark. Requested model labels are unattested metadata. The runs share the prompt, +schema, platform, operator, and possible training or system dependencies. +Twenty-seven exact oracle matches do not establish semantic understanding. The +semantic map is an owner-review judgment over quote-linked text, and its three +universal absences are part of the result. No real event resolved, so the packet +contains neither a forecast outcome nor evidence of forecast calibration.

+ +

The local Lean source states query-signature sufficiency and kernel exactness +using Mathlib's pinned Function.FactorsThrough vocabulary [47]. The +module compiled directly in the local pinned environment, but it is not imported by +the package root and no upstream Mathlib review occurred. It is a local formalization +aid, not an accepted library contribution or external proof review.

+ +

One risk deserves naming on its own. Strict preservation of unknowns can make a +system unusable. If unresolved evidence blocks every action, availability and safety +trade against each other, and the protocol offers no principled exchange rate +between them. OPEN

+ +

Six tests that would demote these claims

+
    +
  1. Clean-room replay. Give an external team the minimized public packet and +nothing else. Disagreement demotes the replay claim or exposes a hidden dependency.
  2. +
  3. Formal non-promotion check. Model the lifecycle and either prove or refute +that proposal, acknowledgement, and unresolved evidence cannot advance accepted +state.
  4. +
  5. Qualified instrument pilot. Use one real instrument with a metrology +review, operating limits, uncertainty, and a known sensing footprint. Failure +narrows the observation contract.
  6. +
  7. False-assurance study. Pre-register a comparison between one composite +status and the six-signal view, measuring correct intervention, missed danger, false +reassurance, and response time. No benefit leaves Six Signals an accessibility +design and not a comprehension improvement.
  8. +
  9. Narrow live adapter. Implement one bounded consequential tool end to end. +Any unrecorded or duplicated effect falsifies the finality boundary.
  10. +
  11. External marker re-assignment. Give an external reviewer the pinned +evidence and marker rules, but not the author's assigned markers. Material +disagreement demotes the affected claim or exposes an underspecified marker rule.
  12. +
+""" + +GUIDE = r""" +

12Adapting this

+ +

The names here do not matter. The separation does. Nine steps, in order, and the +first one is the one people skip.

+ +
    +
  1. Pick one consequential transition. Not an ontology. One action whose wrong +execution or false acceptance would actually hurt.
  2. +
  3. List what you currently collapse. Write the exact phrases your system +treats as success: request accepted, job started, HTTP 200, database commit, sensor +value, human review, deployment succeeded, customer outcome. Decide which are +genuinely different states.
  4. +
  5. Type absence. Define what a real zero means in your domain, then define +no-change, missing measurement, censoring, staleness, and evaluator failure +separately. Never let an empty field pick between them.
  6. +
  7. Bind authority to an operation. Not to a role, and not to a tool. Separate +risks a user may accept from constraints that must refuse. Record expiry, +revocation, and replay behavior.
  8. +
  9. Build the smallest reducer. Rebuild accepted state from the event prefix +using assigned sequence and causal references. Keep presentation and telemetry +derivative. Write a second implementation if the state is load-bearing.
  10. +
  11. Attack it. Change a subject identifier. Duplicate an event. Remove a +blocking check. Replace a source digest. Reorder events. Force an evaluator error. +Return an acknowledgement with no effect. Keep every successful attack as a +regression test.
  12. +
  13. Report a vector. Show consequence, evidence, integrity, privacy, activity, +and the local complete condition separately, with reason codes and source links. +Never color alone.
  14. +
  15. Release less than you collected. Allowlist a public derivative. Keep +sensitive evidence in a restricted store with retention rules. Record what the public +verifier can and cannot recreate.
  16. +
  17. Invite a clean-room challenge. The useful first external test either +matches your bounded result or finds your instructions underspecified. Both results +are worth more than another internal pass.
  18. +
+ +

13What I do not know

+ +

I do not know whether this combination is novel in an academic sense. Section 8.3 +names two systems published in 2026 that share the spine of this design, which narrows +what could be novel to the two separations stated there. I have not completed the +systematic literature review needed to assess even those two, so I make no priority +claim. +I do not know whether six signals are understood better than one status, because I +have run no user study. I do not know whether strict preservation of unknowns is +affordable in a high-volume system. I do not know how any of this behaves under +network partition, adversarial witnesses, or fast schema churn. I do not know +whether the missing Ledger bytes would resolve the terminology conflict in section 2 +or deepen it.

+ +

Those are part of the result. The clearest implementation finding in this work is narrow: +specific false-pass paths became explicit tests, and unresolved conditions stayed +visible instead of being rounded to green. The next tests are external reproduction, +one real qualified instrument, and one bounded live adapter.

+""" + +BACK = r""" +

14Lineage, credits, and AI-assistance disclosure

+ +

Where this came from

+ +

The ideas in this paper did not start here, and they did not start with me alone. +The early conceptual work was done in April and May 2026 in extended dialogue with +language models, principally Claude and Gemini. I set the problems, argued with the +answers, and kept what survived. What the models contributed was real and I am not +going to describe it as tooling.

+ +

I published early versions of these ideas publicly on LinkedIn in May and June +2026, before the software described here existed. Those mutable posts provide +lineage context but are not evidence for this paper. The bounded contribution here +is the checkable implementation: what happened when I built it, tested it, tried to +break it, and recorded the places it failed.

+ +

I make no originality claim over the component ideas. Causal ordering, event +sourcing, compensating transactions, safety and liveness, measurement uncertainty, +conformity assessment, and provenance modeling are all established fields, cited in +section 15, and none of them are mine. The synthesis is what I did, and section 13 +states what is left of it once the neighbours named in section 8.3 are +accounted for.

+ +

Credits and disclosure

+ +

I supplied and classified the source artifacts, set the operating, acceptance, and +privacy constraints, chose which claims to make public, and am responsible for the +manuscript and every release decision.

+ +

Generative AI systems were used as research, coding, testing, and editing tools. +Recorded uses include brainstorming, terminology extraction, source discovery, +repository inspection, code drafting, test generation, adversarial review, and +manuscript editing. Their outputs were treated as candidate material, never as +evidence, authority, authorship, or independent validation. Checks run by agents +that share models, prompts, tools, or specifications are not described anywhere in +this paper as independent replication. The synthesis and the prose benefited +materially from that assistance, and I reviewed the final text.

+ +

Owner-attested AI editorial-review disclosure: Claude (Opus 5) provided editorial +review on 15 August 2026. I independently checked each adopted suggestion against the +source artifacts and retained evidence. This review is editorial assistance, not +evidence, authorship, or independent validation. A minimized disposition note is +included at evidence/editorial-review/PUBLIC-DISPOSITION.md in +the release packet.

+ +

15References

+
+
    +
  1. A. Vaswani et al. Attention Is All You Need. NeurIPS, 2017. papers.nips.cc/paper/7181
  2. +
  3. L. Lamport. Time, Clocks, and the Ordering of Events in a Distributed System. CACM 21(7), 1978. doi:10.1145/359545.359563
  4. +
  5. M. Fowler. Event Sourcing. 2005. martinfowler.com/eaaDev/EventSourcing.html
  6. +
  7. J. Gray. The Transaction Concept: Virtues and Limitations. VLDB, 1981.
  8. +
  9. H. Garcia-Molina and K. Salem. Sagas. SIGMOD, 1987. doi:10.1145/38713.38742
  10. +
  11. F. B. Schneider. Implementing Fault-Tolerant Services Using the State Machine Approach. ACM Computing Surveys 22(4), 1990. doi:10.1145/98163.98167
  12. +
  13. D. Seto et al. The Simplex Architecture for Safe On-Line Control System Upgrades. ACC, 1998. doi:10.1109/ACC.1998.703255
  14. +
  15. JCGM 200:2012. International Vocabulary of Metrology, 3rd ed. doi:10.59161/jcgm200-2012
  16. +
  17. JCGM 106:2012. The Role of Measurement Uncertainty in Conformity Assessment. doi:10.59161/jcgm106-2012
  18. +
  19. National Academies. Reproducibility and Replicability in Science. 2019. doi:10.17226/25303
  20. +
  21. JCGM 100:2008. Guide to the Expression of Uncertainty in Measurement.
  22. +
  23. ICH E9(R1). Estimands and Sensitivity Analysis in Clinical Trials. Final addendum.
  24. +
  25. M. A. Hernán and J. M. Robins. Causal Inference: What If. 2020. miguelhernan.org/whatifbook
  26. +
  27. EU General Data Protection Regulation, Articles 5 and 17. Regulation 2016/679.
  28. +
  29. A. Rundgren, B. Jordan, S. Erdtman. JSON Canonicalization Scheme. RFC 8785, 2020.
  30. +
  31. B. Laurie et al. Certificate Transparency Version 2.0. RFC 9162, 2021.
  32. +
  33. W3C. PROV-DM: The PROV Data Model. Recommendation, 2013.
  34. +
  35. W3C. Web Content Accessibility Guidelines 2.2. Recommendation, 2024.
  36. +
  37. S. Torres-Arias et al. in-toto: Providing Farm-to-Table Guarantees for Bits and Bytes. USENIX Security, 2019.
  38. +
  39. SLSA. Supply-chain Levels for Software Artifacts, v1.2. slsa.dev/spec/v1.2
  40. +
  41. NIST SP 800-207. Zero Trust Architecture. 2020.
  42. +
  43. NIST SP 800-82 Rev. 3. Guide to Operational Technology Security. 2023.
  44. +
  45. NIST AI 100-1. Artificial Intelligence Risk Management Framework 1.0. 2023.
  46. +
  47. CPMI-IOSCO. Principles for Financial Market Infrastructures. 2012.
  48. +
  49. U.S. SEC. Risk Management Controls for Brokers or Dealers With Market Access. Rule 15c3-5.
  50. +
  51. BCBS 239. Principles for Effective Risk Data Aggregation and Risk Reporting. 2013.
  52. +
  53. OMG. Structured Assurance Case Metamodel, v2.3. 2023.
  54. +
  55. U.S. FDA. Predetermined Change Control Plan for AI-Enabled Device Software Functions. 2025.
  56. +
  57. U.S. FDA. Applying Human Factors and Usability Engineering to Medical Devices. 2016.
  58. +
  59. EU Artificial Intelligence Act, Regulation 2024/1689, Articles 12, 14, 19.
  60. +
  61. Kubernetes. KEP-1623, Standardize Conditions. kubernetes.dev/resources/keps/1623
  62. +
  63. CNCF. CloudEvents Specification 1.0.2. 2022.
  64. +
  65. JSON Schema. Core and Validation, Draft 2020-12.
  66. +
  67. Model Context Protocol. Specification revision 2026-07-28.
  68. +
  69. L. Marom, S. Tibbits, G. Zardini, M. J. Buehler. A Category-Theoretic Framework from Biological Mechanics to Engineered Stimulus-Response Systems. arXiv:2604.26367, 2026.
  70. +
  71. P. Kocher, J. Jaffe, B. Jun. Differential Power Analysis. CRYPTO, 1999. doi:10.1007/3-540-48405-1_25
  72. +
  73. J. Macdonald. OpenGoldenRatio (OGR) v0.1: Containment-First Multi-Agent Governance Protocol. Zenodo, 2026. doi:10.5281/zenodo.18969396. Executable demonstration at commit 58450185582f4ecf1410b33f77e22d8d4b0441a2.
  74. +
  75. T. Heightman, E. Orlova, P. Mantrov, and A. Ustimenko. Hamilton-Zero: A Neural Tensor-Network Foundation Model for Ground States of Arbitrary Quadratic Qubit Hamiltonians. arXiv:2608.11911v2 [quant-ph], 2026. doi:10.48550/arXiv.2608.11911.
  76. +
  77. G. W. Brier. Verification of Forecasts Expressed in Terms of Probability. Monthly Weather Review 78(1), 1950. doi:10.1175/1520-0493(1950)078<0001:VOFEIT>2.0.CO;2.
  78. +
  79. T. Gneiting and A. E. Raftery. Strictly Proper Scoring Rules, Prediction, and Estimation. Journal of the American Statistical Association 102(477), 2007. doi:10.1198/016214506000001437.
  80. +
  81. A. P. Dawid. Calibration-Based Empirical Probability. Annals of Statistics 13(4), 1985. doi:10.1214/aos/1176349736.
  82. +
  83. J. C. Perdomo, T. Zrnic, C. Mendler-Dünner, and M. Hardt. Performative Prediction. Proceedings of Machine Learning Research 119, 2020. proceedings.mlr.press/v119/perdomo20a.html.
  84. +
  85. E. F. Moore. Gedanken-experiments on Sequential Machines. In Automata Studies, 1956. doi:10.1515/9781400882618-006.
  86. +
  87. A. Nerode. Linear Automaton Transformations. Proceedings of the American Mathematical Society 9(4), 1958. doi:10.1090/S0002-9939-1958-0135681-9.
  88. +
  89. J. E. Hopcroft. An n log n Algorithm for Minimizing States in a Finite Automaton. Stanford CS-TR-71-190, 1971. i.stanford.edu/TR/CS-TR-71-190.html.
  90. +
  91. S. Boyd and L. Vandenberghe. Convex Optimization. Cambridge University Press, 2004. web.stanford.edu/~boyd/cvxbook.
  92. +
  93. Leanprover-community. Mathlib Function.FactorsThrough, pinned at commit 520045ab14e26149ee970e2e617ca04b09bde5d6. Mathlib/Logic/Function/Basic.lean, lines 832-885.
  94. +
  95. A. Ben-Tal and A. Nemirovski. Robust Convex Optimization. Mathematics of Operations Research 23(4), 1998. doi:10.1287/moor.23.4.769.
  96. +
  97. ESAA: Event Sourcing for Autonomous Agents in LLM-Based Software Engineering. arXiv:2602.23193, 2026. arxiv.org/abs/2602.23193.
  98. +
  99. AgentBound: Verifiable Behavioral Governance for Autonomous AI Agents. arXiv:2606.30970, 2026. arxiv.org/abs/2606.30970.
  100. +
  101. Leiden Declaration on Artificial Intelligence and Mathematics. Working group convened by J. Portegies, Eindhoven University of Technology. June 2026, endorsed by the International Mathematical Union. leidendeclaration.ai.
  102. +
+
+ +

AProperties, assumptions, and limits

+ +

A.1 Proposal non-promotion

+

Let L(k) be a valid event prefix and A(k) = R(P, L(k)). +Let U(P) be the nonempty set of policy-authorized projection-update +events, containing only qualified ACCEPT records that close a governed +transition. A CORRECT record begins a new governed transition and may +propose a superseding state, but it cannot update A(k) without a later +qualified ACCEPT. Appending only records whose types lie outside +U(P), including proposal, preparation, tool acknowledgement, and an +unaccepted correction, cannot change A(k).

+

By induction over the appended sequence. The base projection is +unchanged, and each step records history without invoking the update function. The +result depends on complete reference validation and on there being no second update +path. A reducer defect or an incomplete policy invalidates the assumption, and +section 10.1 shows a related assumption failing in practice.

+ +

A.2 Unknown preservation

+

For the proposed normalized aggregate over a finite nonempty required set, the +result is PASS only when +every condition passes, FAIL if any fails, and UNRESOLVED +if none fails and any is unknown, stale, or errored. An empty set returns +UNRESOLVED with reason INVALID_POLICY. No unresolved +required predicate produces a pass. The rule says nothing about predicates omitted +from the set. This general precedence rule has not been exercised by a mixed +false-plus-unknown public fixture. PROPOSED

+ +

A.3 Deterministic replay

+

With fixed policy bytes, event bytes, schema versions, canonicalization, reducer +code, and deterministic dependencies, repeated evaluation returns the same +projection. This is a property of the computational boundary. It does not establish +that the events are true, complete, or authorized.

+ +

A.4 Hash-link mutation detection

+

Assuming second-preimage resistance, an unambiguous canonical encoding, and a +trusted externally anchored tip that transitively commits the event, modifying that +event changes the committed tip except with negligible probability. A checkpoint +protects only the prefix it commits. An anchor before a modified event does not +prevent changing a later event and rehashing the suffix, so detecting suffix +replacement requires an authenticated current tip.

+ +

A.5 Illustrative effect-trace counterexample

+

Consider two declared effects, alpha and beta. Schedule +(alpha, beta) emits the ordered trace +[dispatch-alpha, dispatch-beta], while schedule +(beta, alpha) emits [dispatch-beta, dispatch-alpha]. If both +schedules reduce to the same accepted projection, equal projections still do not +entail equal ordered effect traces. This is a counterexample by construction at the +specification level. No public fixture in the pinned repository implements it, so it +is not a tested result. PROPOSED

+ +

A.6 Bounded lane balance

+

Capacity is tracked per lane, and the three lanes do not share a unit. +Observation, settlement, and recovery each measure something different, so their +backlogs are held as a vector and never summed. For a declared lane +x, a finite trace is evaluated by the deterministic recurrence:

+ +
+
B_x[k+1] = max( 0, B_x[k] + A_x[k] - S_x[k] ) + +M_x(H) = max { B_x[k] : 0 <= k <= H } + +finite_capacity_pass_x(H) iff M_x(H) <= C_x
+
A_x arrivals into lane x  ·  S_x service +capacity of lane x  ·  B_x backlog  ·  C_x declared +finite capacity  ·  H declared finite horizon  ·  all lane +quantities finite, nonnegative, and in one declared unit. +PROPOSED
+
+ +

For declared arrays, initial backlog, horizon, and capacity, these equations +answer one bounded question: whether the computed backlog exceeds capacity anywhere +in that finite trace. They do not establish stationarity, asymptotic stability, +recurrence class, a queue-length distribution, or a future arrival or service rate. +No stochastic queueing theorem is claimed or tested here.

+ +

The autonomy rule in section 3 treats observation, settlement, and recovery +capacity as separate constraints. Applying it to a live lane would require declared +measurement procedures and a justified rule for projecting beyond the observed +window. This project supplies neither. A finite-capacity pass is therefore a local +trace result, not evidence that a live lane will keep pace. +OPEN

+ +

Where a bounded check is wanted before an estimator exists, the survivability +harness substitutes finite reachable-state traversal at a declared horizon. The +profile fixes H = 7 rounds and a no-change tolerance of +epsilon = 0.02 in the lane's declared unit. Both are conventions. A +longer horizon evaluates a different, generally more expensive bounded question, +and neither value is derived from anything. Under an exact-H recovery +condition, one horizon is not uniformly stronger or weaker than another without +additional monotonicity and absorbing-target assumptions. Every disturbed and +controlled state must stay legal, preserve the named invariant, and retain the +required essential function, and every state in the frontier at round +H must be in the recovery target set. Merely reaching the target +before H is insufficient unless the required H-frontier +condition also holds. An invalid model, an undefined +controller, or an exceeded bound returns UNKNOWN rather than a pass. +PROPOSED

+ +

A.7 Brier loss and the coupled-objective shift

+

Let Y be binary with Pr(Y=1)=q. For a forecast +p, direct expansion gives:

+ +
+
E[(p-Y)^2] + = q(p-1)^2 + (1-q)p^2 + = p^2 - 2pq + q + = (p-q)^2 + q(1-q)
+
The final term is constant in p, so the unique minimum on +the unit interval is p = q. This is the binary Brier result [39, 40].
+
+ +

If the same objective adds mu p, its derivative is +2(p-q)+mu. Strict convexity gives the constrained minimizer +clip(q-mu/2, 0, 1). At q=1/2 and mu=1/2, the +optimum moves from 1/2 to 1/4. The lower report is not a +better estimate of q. It is the optimum of a different objective. The +counterexample proves that an incentive attached directly to the report can distort +the report; it does not prove that every coupled system does so.

+ +

A.8 Query factorization and exact kernels

+

For a finite family of queries, let sigma_Q(x) be the vector of all +declared answers at state x, and let r(x) be a proposed +representation. The representation is sufficient exactly when equal represented +values never hide unequal query signatures:

+ +
+
r(x) = r(y) implies sigma_Q(x) = sigma_Q(y) + +equivalently, sigma_Q = d after r on the image of r
+
This is sigma_Q.FactorsThrough r in Mathlib's pinned +vocabulary [47]. The decoder d need only be defined on represented values +that occur.
+
+ +

Exactness requires the reverse factorization as well. Then +r(x)=r(y) if and only if sigma_Q(x)=sigma_Q(y), so the two +functions induce the same kernel partition. Their class labels and data structures +may still differ. The local QueryQuotient.lean module proves component +factorization, the sufficiency equivalence, separation of unequal signatures, and +this kernel characterization. It compiled directly against the pinned Mathlib +environment; the exact source and standalone compile receipt are included in the +owner-review packet. This is not an upstream-reviewed contribution.

+ +

The included source and receipt are the complete public evidence boundary for this +result. The receipt points to an earlier local package receipt and binds additional +package files that this minimized packet does not include, so a public reader cannot +replay the complete local receipt chain from these bytes alone. The local package +working directory was not itself a Git repository when the compile was recorded; +the public release commit anchors the released copies, not their full pre-release +history. Other modules imported by ZeroState.lean are outside A.8 and do +not support the quotient claim. Clean-room reconstruction of the pinned package +environment remains open. OPEN

+ +

In the finite activation packet, the unique five-field candidate minimum is +sufficient for all seven queries over 151 traces. It realizes 47 representation +values, while the full query signature realizes 33 classes. It therefore preserves +the answers but does not implement the exact quotient. The result is relative to +the supplied ten fields and exhaustive 1,023-subset search.

+ +

A.9 Future-stable refinement

+

Static query equality is the initial relation +x equiv_0 y when sigma_Q(x)=sigma_Q(y). Define the next +relation by retaining a pair only when it was previously equivalent and every +declared event has the same enabled-or-refused status and leads to states equivalent +under the previous relation. Each round can split classes and never merge them. On +a finite state set the descending sequence must stabilize.

+ +

At the fixed point, equivalent states have the same query answers after every +permitted finite continuation. Conversely, any transition-stable equivalence lying +inside the initial query kernel survives every refinement round by induction, so it +lies inside the fixed point. The limit is therefore the largest transition-stable +equivalence contained in the declared query kernel, or the coarsest stable +refinement of its partition. This is established sequential-machine refinement, +not a new theorem [43-45].

+ +

The frozen packet's full seven-query partition began with 33 classes and was +already stable. Omitting nextPermittedActions began with 18 classes and +refined to 33 in one round. Both reached the same partition digest +2f129b2ac6c0. The witness is concrete: after +BOOT, ACCEPT_CONSENT is enabled and advances; from the +empty trace it is refused and remains in place. This proves the distinction only in +the pinned finite graph.

+ +

A.10 Pareto existence and policy selection

+

Let a finite nonempty action set carry a finite risk vector. Say action +a dominates b when every component of a is no +worse and at least one is strictly better. A Pareto-minimal action must exist. Start +from any action. If it is dominated, move to a dominator. Strict dominance cannot +cycle, and a finite set cannot support an infinite descent, so the process ends at +a nondominated action.

+ +

If every scalarization weight is positive, a minimizer of the weighted sum is +Pareto-minimal: a dominator would make at least one positively weighted component +smaller and none larger, contradicting minimality [46]. The converse does not give +one authorized weight vector, and neither existence result gives uniqueness. In the +BP-001 fixture, all three actions are nondominated. Returning +the frontier and an unresolved selection is therefore the complete result until +policy supplies a preference rule.

+ +

BProvenance, reuse, and attribution

+ +

The intended public release will use CC BY 4.0. Adaptation will be welcome, +including commercial adaptation, with attribution to the author and identification +of what was modified. I cite my own sources throughout and expect the same in +return, which is the whole of what I am asking.

+ +

For publication, the exact release bytes will be hashed with SHA-256, recorded in +the public event history described in section 6, sealed by a checkpoint, and checked +again in continuous integration. Until that workflow runs against the final release, +this owner-review draft has no completed publication commitment. Once complete, the +record can support artifact identity and chronology for the committed bytes. It does +not by itself prove authorship, originality, independent creation, or legal +priority.

+ +
+

Interoperability fixtures in this specification

+

Several values here are arbitrary by construction, meaning any distinct value +would serve the same technical purpose. They are fixed so that implementations can +exchange and replay the same records. They are technical fixtures, not watermarks or +evidence of origin:

+
    +
  • the domain separation tag D in section 6;
  • +
  • the condition vocabulary PASS | FAIL | UNKNOWN | STALE | ERROR | +NOT_APPLICABLE, and the reason code INVALID_POLICY returned for +an empty required set;
  • +
  • the coined terms protocol-calibrated predicate, decisive evidence +coverage, decisive conformance, and non-stale-label fraction, +each defined at first use;
  • +
  • the term frozen-oracle packet for BP-001: the prompt-response evaluation +whose oracle and semantic rubric were fixed before collection and withheld from +responders; the term does not imply blinded assignment or blinded assessment;
  • +
  • the three-lane capacity vector of A.6, naming observation, settlement, and +recovery as separately metered lanes that are never summed.
  • +
+

An implementation that adopts this protocol may reproduce these values under the +license. Attribution and identification of modifications are license obligations, +separate from any technical identity check.

+
+ +

CArtifact index

+

Full SHA-256 values for every digest abbreviated in the text. The table separates +public file bytes, derived outputs, and declared digests because they have different +verification ceilings.

+ +

Verification note: REPRODUCE.md gives the clean-clone +procedure for this release packet. Its offline Python and JavaScript verifiers cover +the included allowlisted bytes. For external repository rows, check out the named +commit and hash the exact file bytes with a local SHA-256 tool. +Rows identified only by retained source ID are not public inputs; their digests bind +the bytes inspected locally without exposing a workstation path. The projection-root +row is reproduced by the named verifier, not by hashing that script. The refusal +corpus row cannot be recomputed from the public repository because the source bytes +are absent. No single command can reproduce public, retained, and derived rows with +different access boundaries.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Table 12. Public locators, retained source IDs, and expected digests. +Repository abbreviations are RL for Resilience-Ledger, TS for the-stable, and TR for +typed-refusal-harness.
ArtifactExact locator and statusExpected SHA-256 or root
Atlas data-sync contractpublic blob: RL@275d0b3e7474
governance/contracts/atlas-data-sync.contract.v2.json
7366c7042ec2e40a501fe091f9367eb5e8e8449763b69afadf29762864d58263
Atlas runtime contractpublic blob: RL@275d0b3e7474
governance/contracts/atlas-runtime-contract.v1.json
7cd8c2a89f6df20995789f066643240a4cbcbc3ca67d2dc1cc4c71129b22ffd5
Production observation 000001public blob: RL@275d0b3e7474
governance/ledger/events/deployment/000001-wp0-production-observation.json
34bde4ec2eb4d1bfb70b8d44df6439cb295bd1dc1293df0ae47490193ad3fa97
Production observation 000002public blob: RL@275d0b3e7474
governance/ledger/events/deployment/000002-public-explanation-production-observed.json
4917a927727e3b0cc03cd057100a698ccc18e51751f69dd33f5bed14344fa24f
STP v1.2 release manifestpublic blob: RL@275d0b3e7474
research/stp-v1.2/release-manifest.json
2f95ed233a20060d1cbca3fae555410732242b26d9fb08afe482bc3390077704
Cross-language projection rootderived output: RL@275d0b3e7474
node governance/harnesses/verify-replayers.js
22852b5a3025d4ed7ee1d26cc4efcd51ae2e3e02ba2a20332c2a09827d6462ca
Refusal corpus, US Code Title 29declared only: TR@721a824c9f73
data/arms.json#corpus.sha256; source bytes absent
188ab1c50a46f0dd2ff32aaa5f65c759a07710e052d297644b1a8f6b58ff413d
Replication registration recordpublic blob: TS@77408db59cad
experiments/replication-2026-07-17/PREREGISTRATION.md
eff780cff6a4522370af2f00d01a7dc121ab143677f805cbdc865620dad7820b
Replication decision logspublic blob: TS@77408db59cad
experiments/replication-2026-07-17/decision-logs.json
9fb48b2c0a837f91581c5faf5a043126348b6f86e64bf2383182f65978ffdca6
Generic activation datasetretained source DA-DATASET-001, 98,769 bytes; synthetic input not included in this minimized packeta2dece0b00e9659e3f50df307bd41dedc722a1c5b93b16153f616d1f2b58a179
Generic activation checker configretained source DA-CONFIG-001, 540 bytes; configuration not included in this minimized packet7d6545f4d5cfa603b33f94ef42f747e4bf5e98631edfef30896cb5d24fb31c4d
Generic activation analysisowner-review packet, 2,737 bytes
evidence/device-activation/expected-analysis.json
7c550d125d383f7238ff936c7d05a3815ceb35132326253b973562fbca4b0a80
Generic activation receiptowner-review packet, 3,158 bytes
evidence/device-activation/BUILD-RECEIPT-000001.md
ee60b9aa4baa0286fb5899255380d6bf9772ca9240354bddc3b1a75fce1b9ab6
Transition-stable quotient reportowner-review packet, 2,627 bytes
evidence/transition-stable-quotient/expected-report.json
1b0e78adcac732561a0263ef2704d53b397597c502f81e88a0999a37232df183
Transition-stable partition over frozen case IDsderived output: stablePartitionSha256 in the transition-stable quotient report2f129b2ac6c060d253831dbded1810cfd64b030fa6b8a0514d6e048fc7086187
Transition-stable quotient receiptowner-review packet, 4,016 bytes
evidence/transition-stable-quotient/BUILD-RECEIPT-000001.md
4d0b0f50c361c51734db51a786fdc40b85de591e077d295677dbd40d63967514
BP-001 promptowner-review packet, 1,662 bytes
evidence/blind-prompt/PROMPT.md; legacy locator retained for receipt continuity
6b0628ef41bdf3b8d871238aa39ac44af43576887d5e0b1ed44ad8e7cdeccaf1
BP-001 response schemaretained source BP-SCHEMA-001, 1,808 bytes; not included in this minimized packet3656a398b63255eefc2121327da65884cca365a965f5601d6eab18e33aa0a505
BP-001 run manifestretained source BP-RUN-MANIFEST-001, 2,175 bytes; not included in this minimized packet5e104bff1ccd4cffc684667f84783a06414cfb7177da1b43717f0c90145e2f63
BP-001 evaluator reportretained source BP-EVALUATOR-001, 20,945 bytes; quote-bearing report not includedde2c28735762a153602fc6e4bb777520c2aa3c687837e3f64b6277c459d67fe9
BP-001 packet receiptretained source BP-RECEIPT-001, 4,488 bytes; private packet receipt not included537e8cc13e8425e53304dd22637df6d186efa4df0be0f910a747b5f78632c815
Lean query quotient sourceowner-review packet, standalone module, 3,791 bytes
evidence/lean-query-quotient/QueryQuotient.lean
cfbb166202ade30abc0c79287ff8c1acf216e91a863121ade923218caede9896
Lean query quotient compile receiptowner-review packet, 4,233 bytes
evidence/lean-query-quotient/BUILD-RECEIPT-000005.md
8cdb9da9a9ddaba90c63390f1e94d11e18ca32f7d2a95b46b6ce3e1a27de79b2
+ +

DReproduction and revision lineage

+ +

Clean-clone packet verification is documented in REPRODUCE.md. From +a full Git checkout at the release commit or tag, the offline Python and JavaScript +verifiers must independently return the same canonical report over the declared file +allowlist, raw byte lengths, SHA-256 digests, and payload root. The repository-root +and packet-local .gitattributes rules disable line-ending conversion so +a normal Windows checkout does not create a false byte mismatch. A clean-clone test +with core.autocrlf=true passed before this revision was prepared. This +verifies packet identity only; it does not rebuild the PDF, recover excluded inputs, +independently replicate an experiment, or establish claim truth, originality, +authority, safety, or fitness. TESTED

+ +

Demotion test 6 now has a machine-readable review surface. The release contains a +marker-blind claims.json, a separate author-markers.json, and +reviewer-markers.template.json. The register excludes the four Table 1 +legend examples and assigns a release-scoped ID to every substantive marked unit. A +reviewer receives the claims, their embedded neutral marker policy, and registered +accessible sources before seeing the author key. Matching markers agree; a mismatch +becomes CONTESTED/HOLD; +a missing assignment is INCOMPLETE. No comparison can auto-promote a +claim. Because the marked manuscript is public, the separation is a procedural blind, +not cryptographic secrecy.

+ +

CHANGELOG.md retains the fuller packet history. In summary: +owner-review.1 created the minimized public packet; owner-review.2 dispositioned +private editorial feedback and tightened claim ceilings; owner-review.3 added the +standalone Lean source and receipt plus the statistical corrections; and +owner-review.4 standardizes BP-001 terminology, states the Lean chronology boundary, +adds clean-clone instructions and packet-local line-ending protection, and makes the +external marker-reassignment test executable. Each release receipt is append-only and +names its predecessor. A revision identifier describes artifact lineage, not +scientific priority or acceptance.

+ + +""" diff --git a/research/from-model-output-to-accepted-state/evidence/RELEASE-BUILD-RECEIPT-000001.md b/research/from-model-output-to-accepted-state/evidence/RELEASE-BUILD-RECEIPT-000001.md new file mode 100644 index 0000000..ac92137 --- /dev/null +++ b/research/from-model-output-to-accepted-state/evidence/RELEASE-BUILD-RECEIPT-000001.md @@ -0,0 +1,60 @@ +# Release build receipt 000001 + +Status: `OWNER_REVIEW / PREPARED_NOT_MERGED`
+Recorded: 2026-08-15
+Release: `from-model-output-to-accepted-state-0.1.0-owner-review.1` + +## Scope + +This receipt covers the minimized public packet in `research/from-model-output-to-accepted-state/`. It records local preparation and verification. It does not authorize merge, release tagging, DOI registration, deployment, or a change from owner-review draft to accepted publication. + +Excluded from the packet: raw model transcripts, private semantic maps, private correspondence, screenshots, absolute local-machine paths, credentials, caches, unrelated repository files, and any artifact not named by `release-manifest.json`. Relative project locators retained inside the manuscript are evidence references, not local-machine paths. + +## Source baseline + +- Repository: `JakeTOpenSource/Resilience-Ledger` +- Base branch: `origin/main` +- Base commit: `5f9cc14` (`Merge pull request #13 from JakeTOpenSource/receipt/close-sw-drift`) +- Working branch: `agent/publish-accepted-state-owner-review` + +## Tooling + +- Python `3.14.6` +- Node.js `24.18.0` +- Git `2.54.0.windows.1` +- pypdf `6.14.2` + +## Pre-binding checks + +The release manifest was first generated before this receipt was added, then checked by separate Python and JavaScript implementations. + +```text +VERIFY PASS +cross_language_parity=PASS +files=32 +payload_root=5bba3bfd4fea9bd7c5bc8f261503affba5a25d9a9d9699cd15ae301060244348 +manifest_sha256=8a35757fd5ca14b5ec2b69c6f28bd7f385392f6a2feec49091f16095f075a1e0 +status=PASS +``` + +The paper-specific validator returned: + +```text +PASS source: 6 files +PASS PDF: 34 pages, 19 bookmarks, 28 links +PASS tagged figures: 10 with alternate text +PASS page words: min=270 max=527 +``` + +The final manifest is regenerated after this receipt is present. The committed `release-manifest.json` and Git commit are the final byte anchor; rerun `tools/verify.ps1` to verify that final state. + +## Included output identities + +| Output | Bytes | SHA-256 | +|---|---:|---| +| `paper/From-Model-Output-to-Accepted-State-Owner-Review.pdf` | 949907 | `1707ffab851bc963a2874a6303c1e2d2aa5c9db2e262343d921f9d7df839b4ca` | +| `paper/From-Model-Output-to-Accepted-State-Owner-Review-LinkedIn.md` | 103786 | `e4152d92a02893eb855b78d1ec48e2f836cff25c24c2a09e0b0ba9712c9465a6` | + +## Interpretation ceiling + +A passing release check proves that the checked files match the committed manifest and declared packet structure. It does not prove the manuscript's claims, the truth of its sources, independent replication, novelty, external-world outcomes, authority, or fitness for use. The evidence reports retain their original local receipts and narrower ceilings. diff --git a/research/from-model-output-to-accepted-state/evidence/RELEASE-BUILD-RECEIPT-000002.md b/research/from-model-output-to-accepted-state/evidence/RELEASE-BUILD-RECEIPT-000002.md new file mode 100644 index 0000000..e76da10 --- /dev/null +++ b/research/from-model-output-to-accepted-state/evidence/RELEASE-BUILD-RECEIPT-000002.md @@ -0,0 +1,141 @@ +# Release build receipt 000002 + +Status: `OWNER_REVIEW / PREPARED_NOT_MERGED`
+Recorded: `2026-08-15T10:53:02-04:00`
+Release: `from-model-output-to-accepted-state-0.1.0-owner-review.2`
+Previous receipt SHA-256: `0e0a1c8ef73bfdd6797bb1dcdb4168264d2e9f5bd3193a1cb7ca3c0f9b175aa3` + +## Scope + +This append-only receipt covers the owner-review revision that dispositioned one +private editorial review, updated the manuscript sources, rebuilt the public PDF +and LinkedIn companion, and visually inspected all 35 rendered pages. It does not +authorize merge, release tagging, DOI registration, deployment, publication as an +accepted paper, or any change from owner-review draft status. + +The raw editorial review, its private locator, model transcript data, credentials, +caches, and unrelated repository files remain outside the public packet. + +## Source baseline + +- Repository: `JakeTOpenSource/Resilience-Ledger` +- Base branch: `origin/main` +- Base commit: `5f9cc145763bc51b183e93b4f7059b25aa6ee2ca` +- Prior branch commit: `d29bd6bf3b10b7ac6e9290cf9d9e92158cba0b45` +- Working branch: `agent/publish-accepted-state-owner-review` + +## Editorial-review boundary + +The owner supplied a 19,061-byte private review and attested that it was produced +by Claude (Opus 5) on 2026-08-15. The supplied bytes have SHA-256 +`1d56f0017a29e4a059276440943334cd3b6c09aea6f5bf57c1e7ed2d6ebb8d1e`. +This identifies the supplied bytes but does not authenticate a model, runtime, +account, seed, sampling process, or author identity. + +The public disposition is 4,120 bytes with SHA-256 +`d16ecec5d503722c9f7a1945cb7378fff391514a1fbde2bc58431e0ed870b5c8`. +It records accepted, partially accepted, and rejected editorial suggestions without +publishing the private review. Adopted changes were checked against manuscript +sources and retained evidence. The review is editorial assistance, not evidence, +authorship, peer review, source truth, or independent validation. + +## Adopted manuscript calibration + +- The abstract calls the 34 runner-reported numbered holds a diagnostic inventory, + not a coverage measure. +- The exploratory refusal aggregates no longer imply a ranking among P1, P2, and P3 + or a causal accuracy benefit from structure or model choice. +- The compact response exercise is described as oracle-hidden output recovery, not + blinded experimentation, model attestation, determinism, or independent systems. +- The single-operator and self-applied-marker threat is explicit and has an external + marker-reassignment demotion test. +- The unlocated LinkedIn term inventory was removed; mutable posts remain lineage + context rather than paper evidence. +- The non-stale-label fraction and candidate-generating distribution notation were + made explicit. + +No manuscript change was made for extraction-only table-layout concerns, the +incorrect current-Lean-receipt-drift claim, or the proposed determinism label. + +## Tooling + +- Python `3.12.13` +- Node.js `24.18.0` +- Git `2.54.0.windows.1` +- PDF structure validation: `pypdf` +- Page rendering and inspection: `pypdfium2`, 35 pages + +## Paper build and validation + +The owner-workspace builder regenerated the five SVG figures, owner-review HTML, +PDF, and LinkedIn companion from the revised source fragments. The paper-specific +validator returned: + +```text +PASS source: 6 files +PASS PDF: 35 pages, 19 bookmarks, 28 links +PASS tagged figures: 10 with alternate text +PASS page words: min=82 max=539 +``` + +All 35 pages were rendered to PNG and inspected. No clipping, overflow, broken +glyphs, missing page numbers, orphaned headings or captions, or table-cell collisions +were found. Page 35 is intentionally sparse because it contains the final two rows +of the paginated artifact index. + +## LinkedIn document-post readiness + +LinkedIn Help was consulted on 2026-08-15. Its organic document-post guidance allows +PDF files up to 100 MB and 300 pages, requires one page size throughout, recommends +flattening or merging multiple PDF layers, requires secure hyperlinks and an upload +title, and does not permit replacing the uploaded document in place. Relevant +official pages: + +- `https://www.linkedin.com/help/linkedin/answer/a518909/upload-and-share-documents-on-linkedin` +- `https://www.linkedin.com/help/linkedin/answer/a564109/media-file-types-supported-on-linkedin` +- `https://www.linkedin.com/help/linkedin/answer/a523054/document-uploads-on-linkedin-faq` + +The rebuilt PDF is 956,800 bytes and 35 pages. All pages have one 612 by 792 point +media box. It is unencrypted, has no optional-content layer dictionary, JavaScript, +or embedded files, and contains 28 URI annotations, all using HTTPS. All nine font +families found in page resources are embedded subsets. The PDF title metadata is +`From Model Output to Accepted State`. Selectable text, tagged figure descriptions, +bookmarks, and link annotations remain present. + +This is a pre-upload compatibility check, not a LinkedIn ingestion test or a promise +about future platform rendering. Because LinkedIn cannot replace a posted document, +any later manuscript change requires a new post or a separately versioned document. + +## Pre-binding release check + +The manifest was generated after the revised sources, disposition note, and rebuilt +outputs were present, but before this receipt was added. Separate Python and +JavaScript verifiers returned the same canonical report: + +```text +VERIFY PASS +cross_language_parity=PASS +files=30 +payload_root=dbd142384a4ff56dfb39eab01aadd5164a57c7499926f54670193f080cda3d23 +manifest_sha256=5430ce3b8746fefaa068ae3120407d744a7078e5ee13d07866e61e919a9c977e +status=PASS +``` + +The final manifest is regenerated after this receipt is present. The committed +`release-manifest.json` and Git commit are the final public byte anchors; rerun +`tools/verify.ps1` to verify that final state. + +## Included output identities + +| Output | Bytes | SHA-256 | +|---|---:|---| +| `paper/From-Model-Output-to-Accepted-State-Owner-Review.pdf` | 956800 | `019e372263176cb693e00a2be548c5f0dfb04c5027cb78b1f107070fc2e1afc4` | +| `paper/From-Model-Output-to-Accepted-State-Owner-Review-LinkedIn.md` | 105236 | `60104382023a10e4d25bb3ad80e1a729ea29efca39afe12f4e7c0a1c430a1450` | + +## Interpretation ceiling + +A passing release check proves only that the checked files match the committed +manifest and declared packet structure. It does not prove the manuscript's claims, +the truth of its sources, reviewer identity, independent replication, novelty, +external-world outcomes, authority, safety, or fitness for use. The packet remains +an owner-review draft. diff --git a/research/from-model-output-to-accepted-state/evidence/RELEASE-BUILD-RECEIPT-000003.md b/research/from-model-output-to-accepted-state/evidence/RELEASE-BUILD-RECEIPT-000003.md new file mode 100644 index 0000000..c83aa52 --- /dev/null +++ b/research/from-model-output-to-accepted-state/evidence/RELEASE-BUILD-RECEIPT-000003.md @@ -0,0 +1,143 @@ +# Release build receipt 000003 + +Status: `OWNER_REVIEW / PREPARED_NOT_MERGED`
+Recorded: `2026-08-15T14:56:12-04:00`
+Release: `from-model-output-to-accepted-state-0.1.0-owner-review.3`
+Previous receipt SHA-256: `4f43366e22beeae29ce4d48d80f910ad5f93b30045b6df738412caa94dacadb5` + +## Scope + +This append-only receipt covers four bounded evidence and editorial repairs, +regeneration of distinctly named v3 paper outputs, a minimized public disposition +of two private follow-up cold reads, and final visual, technical, privacy, and +release-packet checks. It does not authorize merge, release tagging, DOI +registration, deployment, journal acceptance, or a change from owner-review draft +status. + +The private cold reads, attachment locators, model transcript data, credentials, +caches, owner-only mappings, and unrelated repository files remain outside the +public packet. + +## Source baseline + +- Repository: `JakeTOpenSource/Resilience-Ledger` +- Base branch: `origin/main` +- Base commit: `5f9cc145763bc51b183e93b4f7059b25aa6ee2ca` +- Prior branch commit: `d1f4966b3e74b8ee316d3acd73dc2ee5e57b0d5e` +- Working branch: `agent/publish-accepted-state-owner-review` + +## Adopted corrections + +1. The abstract now separates the observed unsupported-claim counts from the + manuscript's auditability contribution and makes no causal accuracy claim. +2. The 34 runner-reported numbered holds are identified as a diagnostic inventory, + not a coverage measure or a count of everything checked. +3. The exploratory structured-arm comparisons report Fisher values of `1.000` + for P1 versus P2, `0.579` for P1 versus P3, and `0.428` for P2 versus P3. + Overlapping Wilson intervals, clustering, shared prompts, and missing raw runs + prevent arm ranking, equivalence, or confirmatory inference. +4. The exact standalone `QueryQuotient.lean` source and its append-only compile + receipt are included. The module remains outside the package-root import and is + not presented as an upstream Mathlib contribution or novel factorization theory. + +The public editorial disposition identifies the two follow-up sources only by +bounded IDs, byte counts, and SHA-256 digests. It publishes no raw review prose or +private locator. The reviewer attribution remains owner-attested and not +runtime-authenticated. + +## Lean evidence repair + +The pinned standalone compile of `ZeroState/QueryQuotient.lean` exited `0` with no +standard output or error output. The exact source and receipt included here are: + +| Artifact | Bytes | SHA-256 | +|---|---:|---| +| `evidence/lean-query-quotient/QueryQuotient.lean` | 3791 | `cfbb166202ade30abc0c79287ff8c1acf216e91a863121ade923218caede9896` | +| `evidence/lean-query-quotient/BUILD-RECEIPT-000005.md` | 4233 | `8cdb9da9a9ddaba90c63390f1e94d11e18ca32f7d2a95b46b6ce3e1a27de79b2` | + +Receipt 000005 chains from the prior Mathlib packet receipt and records the pinned +Lean, Lake, Mathlib, source, command, result, assumption scan, and root-import +boundary. Historical receipts were not rewritten. + +## Paper build and validation + +The owner-workspace builder regenerated all five SVG figures, HTML, PDF, and +LinkedIn companion from the revised manuscript sources. The paper-specific +validator returned: + +```text +PASS source: 6 files +PASS PDF: 35 pages, 19 bookmarks, 28 links +PASS tagged figures: 10 with alternate text +PASS page words: min=63 max=539 +``` + +All 35 pages were rendered and inspected individually. No clipping, overflow, +overlap, broken glyph, table collision, missing caption, cutoff, or missing page +number was found. Dense artifact-index pages remained readable. Page 35 is +intentionally sparse because it closes the paginated index. + +## PDF and LinkedIn document boundary + +The PDF contains 35 uniform Letter pages with 612 by 792 point page boxes and zero +rotation. It is unencrypted and contains no AcroForm, optional-content layer, +embedded file, JavaScript action, or open action. It contains 28 URI annotations, +all using HTTPS; 19 bookmarks; selectable text on every page; a marked structure +tree; alternate text on all ten figure tags; and embedded font subsets. +Chrome emitted two tagged Figure nodes for each of the five visible figures, so +each description appears twice in the structure tree. The descriptions are present, +but no full screen-reader or PDF/UA certification is claimed. + +The retained file remains well below LinkedIn's published document-upload limits +recorded in receipt 000002. This is a file-internal compatibility check, not a +LinkedIn ingestion test or a promise about future platform behavior. LinkedIn does +not replace an uploaded document in place, so the distinct v3 filename prevents +the prior owner-review artifact from being mistaken for the revised bytes. + +## Privacy and publication-boundary check + +The PDF extracted text, metadata, LinkedIn companion, manuscript source, evidence, +documentation, and release inventory were checked for absolute Windows and Unix +user paths, Codex attachment or clipboard locators, workspace-only `work/...` +locators, local network addresses, email addresses, credentials, private keys, +replacement characters, NUL bytes, raw prompt responses, and raw editorial-review +prose. No prohibited item was found. Public artifact-index rows use packet locators +or bounded retained-source IDs rather than workstation paths. + +The release inventory contains no cache directory, compiled Python cache, temporary +render, hidden payload, or unbound regular file. `.gitattributes` is an intentional +release-control file, not a hidden data payload. + +## Pre-binding release check + +Before this receipt was added, the deterministic manifest writer and separate +Python and JavaScript verifiers returned the same canonical report: + +```text +VERIFY PASS +cross_language_parity=PASS +files=33 +payload_root=4ae37202891f970f0f75637d05098d679fcbc22809e3fd4ccff90e0d84cfb499 +manifest_sha256=e9b36b4d00872911159142a015a40753230d2b15120a366da23ffc1e4e5ed07e +status=PASS +``` + +The final manifest is regenerated after this receipt is present. The committed +`release-manifest.json` and Git commit are the final public byte anchors; rerun +`tools/verify.ps1` to verify that final state. + +## Included output identities + +| Output | Bytes | SHA-256 | +|---|---:|---| +| `paper/From-Model-Output-to-Accepted-State-Owner-Review-v3.pdf` | 958383 | `26e7f35e5e4fb125ba4339d0179cccf662d5d0fcbf09d8e27693b3b74fb0767c` | +| `paper/From-Model-Output-to-Accepted-State-Owner-Review-v3-LinkedIn.md` | 106036 | `7b42b837fe2bf3d7cc4c1a2f4e956ca8f44c7e8d6c35f04a5bba783a8606dbc2` | + +## Interpretation ceiling + +A passing release check establishes only byte consistency with the declared +manifest and the bounded structure checked by its verifiers. It does not prove the +manuscript's claims, source truth, reviewer or model identity, independent +replication, novelty, external outcomes, authority, safety, legal compliance, or +fitness for use. The packet remains an owner-review draft until the owner makes a +separate publication decision. diff --git a/research/from-model-output-to-accepted-state/evidence/RELEASE-BUILD-RECEIPT-000004.md b/research/from-model-output-to-accepted-state/evidence/RELEASE-BUILD-RECEIPT-000004.md new file mode 100644 index 0000000..8d29895 --- /dev/null +++ b/research/from-model-output-to-accepted-state/evidence/RELEASE-BUILD-RECEIPT-000004.md @@ -0,0 +1,138 @@ +# Release build receipt 000004 + +Status: `OWNER_REVIEW / PRIVATE_V4_READY_FOR_OWNER_REVIEW / PREPARED_NOT_MERGED`
+Recorded: `2026-08-15T16:10:20-04:00`
+Release: `from-model-output-to-accepted-state-0.1.0-owner-review.4`
+Previous receipt SHA-256: `a38b50371df75f62348f3cadebd37c766af3ba869a7cd4ae9682cf2d29e951fc` + +## Scope + +This append-only receipt covers the private v4 owner-review build, its exact paper +outputs, the normalized frozen-oracle terminology, the explicit Lean evidence +boundary, a clean-clone runbook and packet-local line-ending rule, a marker-blind +claim register with separate author key, and a packet-level changelog. Historical +receipts and their outputs were not rewritten. + +This receipt does not authorize merge, release tagging, DOI registration, +deployment, journal acceptance, or a claim that an external reviewer reproduced the +work. The v4 files remained local and unpushed when this receipt was recorded. + +## Source baseline + +- Repository: `JakeTOpenSource/Resilience-Ledger` +- Branch: `agent/publish-accepted-state-owner-review` +- Prior public branch commit: `817e4265563c124dedb6675b7c44d0082c3d8085` +- Prior release receipt: `evidence/RELEASE-BUILD-RECEIPT-000003.md`, 6,977 bytes +- Prior release receipt SHA-256: + `a38b50371df75f62348f3cadebd37c766af3ba869a7cd4ae9682cf2d29e951fc` + +## Adopted corrections + +1. BP-001 is named the **frozen-oracle packet**. The legacy + `evidence/blind-prompt/` path remains only for receipt continuity. The term does + not imply blinded assignment, blinded assessment, independent systems, or + runtime model attestation. +2. The paper states the exact public boundary for `QueryQuotient.lean`: standalone + source plus compile receipt, not imported by the package root, with the earlier + local package chain and clean-room environment reconstruction still open. +3. `REPRODUCE.md` gives an offline clean-checkout procedure for Windows, macOS, and + Linux. Packet-local `* -text` protects a re-homed packet from line-ending + conversion. A recorded Windows test covers the prior v3 commit; it is not + misreported as a clean-clone replay of these uncommitted v4 bytes. +4. `claims.json` contains 61 substantive marked units and a neutral four-marker + policy without the author's marker or marker-derived ceiling. The separate + `author-markers.json` records 22 TESTED, 5 OBSERVED, 20 PROPOSED, and 14 OPEN + assignments. The external-review template ships empty. Explicit claim-to-source + mappings replace keyword inference; unavailable sources remain named as + unavailable. +5. `CHANGELOG.md` records the owner-review revision lineage. Earlier receipts remain + append-only. The current release surface contains only the distinctly named v4 + PDF and LinkedIn companion; earlier rendered outputs remain recoverable from Git + history and their receipts. + +## Claim-register identities + +| Artifact | Bytes | SHA-256 | +|---|---:|---| +| `claims.json` | 76776 | `cd0a79c07a8b41f80a7a9abe6adca7931b8ee318ff9aed0cc42af7ea249a13e9` | +| `author-markers.json` | 25193 | `d403a57ed62569efeb2ccdef61642717623506170272533f9323548eeb8fd867` | +| `reviewer-markers.template.json` | 10328 | `0a2d012439c722a3c628c6045920f1fc51ae189696b30a1bf577ee72a9d007c4` | +| `REPRODUCE.md` | 3408 | `dde7934c3a54cc2b1b1156314dbbcd22d1855cd448f0478bfa770678a8cbffcf` | +| `CHANGELOG.md` | 2014 | `27002ddfb2c569c2ec37253c91f44805e111551cf3090172ba7a8aaa5c5d6d2d` | +| `.gitattributes` | 239 | `7ccb36d6cee337107bbdd2ac846114861d66e81b803cfead82bbb8e639598a54` | +| `evidence/reproduction/WINDOWS-CLEAN-CLONE-V3.md` | 3453 | `7f5476957fad26c621a730dba01a441a17262bf6a6b3d89a3c3f1168f9c6f7c2` | + +The generator and both release verifiers enforce the register shape, the separation +of author and reviewer assignments, registered source resolution, packet-file byte +identity, and the rule that TESTED or OBSERVED cannot rely only on paper context. +The generator was rerun and then passed its byte-exact `--check` mode with 61 +claims. + +## Paper build and visual validation + +The owner-workspace builder regenerated all five SVG figures, HTML, PDF, and the +LinkedIn companion from the v4 manuscript source. The paper-specific validator +returned: + +```text +PASS source: 6 files +PASS PDF: 36 pages, 20 bookmarks, 28 links +PASS tagged figures: 10 with alternate text +PASS page words: min=158 max=543 +``` + +All 36 pages were rendered at 2.75x or 3x and inspected individually in two +independent page ranges. No clipping, overlap, broken glyph, unreadable text, lost +table row, orphan heading, footer collision, or missing page number was found. +Repeated table headers, long hashes, the Appendix B callout spanning pages 33 and +34, and the Appendix C table spanning pages 34 and 35 remained intact and readable. +Page 36 is intentionally sparse. + +## Privacy and release boundary + +The manuscript, PDF text layer, packet text, Lean source, JSON files, Markdown, +receipts, and verifier sources were checked for absolute user-machine paths, Codex +attachment or clipboard locators, temporary-directory locators, local network +addresses, account credentials, private-key material, replacement characters, NUL +bytes, and raw private editorial-review prose. The public packet contains generic +privacy-pattern definitions and a generic Python fallback expression, but no +resolved owner path or private attachment locator. No compiled Python cache or +temporary render is included. + +Intentional public disclosures remain bounded in the manuscript: named research +assistance, owner-attested editorial assistance, Macdonald's permissioned parallel +related-work review, and the pre-software LinkedIn lineage. None is presented as +authorship, independent replication, or evidence for the paper's results. + +## Pre-binding release check + +Before this receipt was added, the manifest writer and separate Python and +JavaScript verifiers returned the same canonical report: + +```text +VERIFY PASS +cross_language_parity=PASS +files=41 +payload_root=6690ad38958ad25e3f124c36f690aae7119772606fcbf3051107b858c59f1a4d +manifest_sha256=13bb12b3abfa20b9f962c717b7bc53a233fcd4c91cbaf7657fbdf444db123465 +status=PASS +``` + +The final manifest is regenerated after this receipt is present. The committed +`release-manifest.json` and eventual Git commit are the public byte anchors; until +then, the files remain a private owner-review candidate. + +## Included output identities + +| Output | Bytes | SHA-256 | +|---|---:|---| +| `paper/From-Model-Output-to-Accepted-State-Owner-Review-v4.pdf` | 978519 | `483c4f320d58213e2d3a3a03b728f21443c695909f61e0681543a20f7f040705` | +| `paper/From-Model-Output-to-Accepted-State-Owner-Review-v4-LinkedIn.md` | 109261 | `1749996fb8e1d27a159bc820d5d2317210dd1dbd04c880df37f8f00eaa36230b` | + +## Interpretation ceiling + +A passing packet check establishes byte consistency with the declared manifest and +the bounded structures checked by its verifiers. It does not prove manuscript +claims, source truth, reviewer or model identity, independent replication, +originality, external outcomes, authority, safety, legal compliance, or fitness for +use. Owner review of the attached v4 PDF remains required before publication. diff --git a/research/from-model-output-to-accepted-state/evidence/blind-prompt/PROMPT.md b/research/from-model-output-to-accepted-state/evidence/blind-prompt/PROMPT.md new file mode 100644 index 0000000..2bacc34 --- /dev/null +++ b/research/from-model-output-to-accepted-state/evidence/blind-prompt/PROMPT.md @@ -0,0 +1,39 @@ +# Blind Prompt BP-001 + +Use only the facts below. Do not browse, inspect other files, or assume a named +research framework. Return one JSON object matching the supplied schema. Do +not use Markdown. + +A decision system has: + +- a deterministic gate `g` in `PASS`, `HOLD`, or `FAIL`; +- a binary future event `Y` with true rate `q = 1/2`; +- an issued forecast `p` selected from `0, 1/4, 1/2, 3/4, 1`; +- binary Brier loss `E[(p - Y)^2]`; +- a second, coupled objective `F(p) = E[(p - Y)^2] + (1/2)p`; +- a later observation that may still be pending; +- two histories, `[]` and `[ACCEPT(0)]`, both projected to current value `0`; +- the query `everAccepted`, which is false for the first history and true for + the second; +- three candidate actions with risk vectors to minimize: + `A = (safety 0.1, heat 0.8)`, + `B = (safety 0.3, heat 0.4)`, and + `C = (safety 0.6, heat 0.2)`; +- no authorized weights or priority ordering between safety and heat. + +Rules: + +1. Execution is permitted only when the deterministic gate is `PASS`. +2. A pending observation is not zero, false, success, or failure. +3. Pareto dominance means no worse in every risk component and strictly better + in at least one. +4. A forecast must be fixed before its outcome is observed if it is to be + scored as a forecast. +5. Different encodings that preserve exactly the same declared behavior may be + treated as one behavioral class. + +Answer the finite questions exactly, then explain the smallest auditable +architecture you would use. The explanation must distinguish issued output, +realized outcome, deterministic gate state, forecast scoring, and calibration. +It must also state one limitation. + diff --git a/research/from-model-output-to-accepted-state/evidence/blind-prompt/PUBLIC-SUMMARY.md b/research/from-model-output-to-accepted-state/evidence/blind-prompt/PUBLIC-SUMMARY.md new file mode 100644 index 0000000..20667d1 --- /dev/null +++ b/research/from-model-output-to-accepted-state/evidence/blind-prompt/PUBLIC-SUMMARY.md @@ -0,0 +1,41 @@ +# Blind-prompt aggregate summary + +Status: `OWNER_REVIEW / PUBLIC_AGGREGATE_ONLY`
+Study: `BP-001`
+Recorded privately: 2026-08-15 + +This file exposes only the aggregate result used in the manuscript. It contains no raw response, response excerpt, quote-bearing semantic report, per-response digest, or owner-private mapping. + +## Frozen inputs + +- Prompt: [`PROMPT.md`](PROMPT.md) +- Prompt bytes: `1662` +- Prompt SHA-256: `6b0628ef41bdf3b8d871238aa39ac44af43576887d5e0b1ed44ad8e7cdeccaf1` +- Requested configurations: `3` +- Requested model labels: `2` +- Runtime model identity attested: `no` +- Private packet manifest SHA-256: `5e19b18e5185412bcda687db4cbac49c64faa7882233aba32968dd684c1133e6` +- Private canonical report bytes: `20945` +- Private canonical report SHA-256: `de2c28735762a153602fc6e4bb777520c2aa3c687837e3f64b6277c459d67fe9` + +The private hashes bind retained owner evidence. They do not disclose it or establish trusted time, runtime model identity, independence, or truth. + +## Exact finite-output result + +- Oracle groups per response: `9` +- Comparisons: `27/27` +- Exact answer-vector parity: `PASS` +- Invalid response shapes rejected: `2/2` +- Invalid semantic quote links rejected: `2/2` + +This is output recovery from one frozen prompt. It is not an outcome study, calibration study, independent replication, or proof that the semantic explanations are correct. + +## Semantic owner-review result + +- Unambiguous unanimous functions: `F01, F02, F03, F05, F06, F08` +- `F04`: the owner-review mapping marked the function present in all three responses, but direct mention of the declared scoring rule occurred in `2/3`; strict quote-level unanimity remains unresolved. +- Recurrent in `2/3`: `F07, F09` +- Absent in `0/3`: `F10, F11, F12` +- Semantic disposition: `DRAFT_OWNER_REVIEW` + +No response prose is published here. The paper reports the same bounded aggregates and explains the functions and claim ceilings. diff --git a/research/from-model-output-to-accepted-state/evidence/device-activation/BUILD-RECEIPT-000001.md b/research/from-model-output-to-accepted-state/evidence/device-activation/BUILD-RECEIPT-000001.md new file mode 100644 index 0000000..f463f51 --- /dev/null +++ b/research/from-model-output-to-accepted-state/evidence/device-activation/BUILD-RECEIPT-000001.md @@ -0,0 +1,83 @@ +# Build Receipt 000001 + +Status: `LOCAL_OWNER_REVIEW` + +Sequence: 1 + +Previous receipt: `NONE` + +Timestamp metadata: `2026-08-15T07:16:22-04:00` + +Actor: OpenAI Codex under owner-directed local construction authority. + +Action: Defined, generated, replayed, and analyzed the Generic Device Activation Fixture v1. + +## Boundary + +- Synthetic local benchmark only. +- Owner acceptance and release authority remain with Jake Tiller. +- No publication, deployment, external ingestion, or product claim occurred. +- Query values are model outputs. They do not establish external outcomes. + +## Verification command + +```powershell +powershell.exe -NoProfile -ExecutionPolicy Bypass -File .\verify.ps1 +``` + +## Exact result + +```text +VERIFY PASS +generator_parity=2/2 +records=151 +maximum_trace_length=10 +query_fields=7 +candidate_fields=10 +candidate_subsets_tested=1023 +minimum_field_count=5 +minimum_sets=1 +named_projection_results=FAIL,FAIL,PASS,PASS +dataset_sha256=a2dece0b00e9659e3f50df307bd41dedc722a1c5b93b16153f616d1f2b58a179 +config_sha256=7d6545f4d5cfa603b33f94ef42f747e4bf5e98631edfef30896cb5d24fb31c4d +analysis_sha256=7c550d125d383f7238ff936c7d05a3815ceb35132326253b973562fbca4b0a80 +privacy_scan=PASS +utf8_scan=PASS +cache_scan=PASS +``` + +## Bound artifacts + +| Path | Bytes | SHA-256 | +|---|---:|---| +| `.gitignore` | 25 | `6f3708a3b4b1a96332d5a85a6d0ce16a6cb62276d1365e36debc883cb4a83355` | +| `CLAIMS.md` | 2259 | `0ab8856f0f12691e039e3bdfbf019b98a525f0fed098664e488c1978f2d3cd84` | +| `config/candidate-manifest.json` | 907 | `50ba617789082531783f5bc0552de49f4a1969d4687520665a37a616230cc7e6` | +| `config/checker-v2.config.json` | 540 | `7d6545f4d5cfa603b33f94ef42f747e4bf5e98631edfef30896cb5d24fb31c4d` | +| `CONTRIBUTIONS.md` | 795 | `76c757b8c8381f6821d56d01dd5cdafb75549a9484dab3cb7c6c08049b44a17a` | +| `dataset/device-activation-v1.json` | 98769 | `a2dece0b00e9659e3f50df307bd41dedc722a1c5b93b16153f616d1f2b58a179` | +| `README.md` | 2391 | `a7358f5ba3253cf9f8c907220cdeeb9c6151825ba44a3933bdcd3720a49deb99` | +| `results/expected-analysis.json` | 2737 | `7c550d125d383f7238ff936c7d05a3815ceb35132326253b973562fbca4b0a80` | +| `SOURCES.md` | 860 | `daf91d8c75c86f68cf216739c68e57827e6fcd35fdcadeb56b13b17eac026709` | +| `SPEC.md` | 5104 | `b64d3ca52ab2750a57486018cf73483f6df31c137970e6ebae5632b2e1e990d0` | +| `src/analyze.py` | 6011 | `ec70d94c4c000e4e36c6f992b18a2c283b9c2b807d86363091a147f401c80721` | +| `src/generate.js` | 7155 | `53b71dd04782e9ae4c80465536b2303b7de7a1d7e5e054552a8527f416ea5757` | +| `src/generate.py` | 8204 | `1f217bf7565135c590264dbe7eb9076c8960887263523130268d5a55c0399477` | +| `verify.ps1` | 6822 | `d407586cdb875c2cafcdc277d4040d46de68ad584fc6dba584771b07db3f8486` | + +The receipt does not bind itself. Later corrections must append a new receipt rather than modify this record. + +## Result interpretation + +The supplied ten-candidate search has one five-field minimum for the joint seven-query signature: + +```text +backup_access_granted +history_summary +payment_credential_enrolled +phase +unlock_enrolled +``` + +The result is exact only for the 151 traces, seven queries, ten candidate fields, equality rules, and v1 transition semantics recorded here. + diff --git a/research/from-model-output-to-accepted-state/evidence/device-activation/expected-analysis.json b/research/from-model-output-to-accepted-state/evidence/device-activation/expected-analysis.json new file mode 100644 index 0000000..fc0ce1b --- /dev/null +++ b/research/from-model-output-to-accepted-state/evidence/device-activation/expected-analysis.json @@ -0,0 +1 @@ +{"allQueries":{"minimumFieldCount":5,"minimumSets":[["backup_access_granted","history_summary","payment_credential_enrolled","phase","unlock_enrolled"]],"sufficientSubsetCount":32,"testedSubsetCount":1023},"candidateFieldCount":10,"format":"DEVICE_ACTIVATION_EXPECTED_ANALYSIS_V1","individualQueries":{"consentRecorded":{"minimumFieldCount":1,"minimumSets":[["history_summary"],["phase"]],"sufficientSubsetCount":768,"testedSubsetCount":1023},"mayActivate":{"minimumFieldCount":2,"minimumSets":[["phase","unlock_enrolled"]],"sufficientSubsetCount":352,"testedSubsetCount":1023},"mayAuthorizePayment":{"minimumFieldCount":2,"minimumSets":[["active","payment_credential_enrolled"],["payment_credential_enrolled","phase"]],"sufficientSubsetCount":384,"testedSubsetCount":1023},"mayDecryptPrivateData":{"minimumFieldCount":1,"minimumSets":[["active"],["phase"]],"sufficientSubsetCount":768,"testedSubsetCount":1023},"mayRestoreBackup":{"minimumFieldCount":2,"minimumSets":[["backup_access_granted","current_consent"],["backup_access_granted","history_summary"],["backup_access_granted","phase"]],"sufficientSubsetCount":448,"testedSubsetCount":1023},"nextPermittedActions":{"minimumFieldCount":5,"minimumSets":[["backup_access_granted","history_summary","payment_credential_enrolled","phase","unlock_enrolled"]],"sufficientSubsetCount":32,"testedSubsetCount":1023},"refusalSeen":{"minimumFieldCount":1,"minimumSets":[["history_summary"]],"sufficientSubsetCount":512,"testedSubsetCount":1023}},"maximumTraceLength":10,"namedProjections":{"current_operational_summary":{"canonicalCollision":{"differingQueries":["refusalSeen"],"leftId":"trace-000025","representation":[false,false,"ACTIVE",true],"rightId":"trace-000100"},"fields":["backup_access_granted","payment_credential_enrolled","phase","unlock_enrolled"],"mixedRepresentationCount":23,"representationCount":24,"status":"FAIL"},"factory_baseline":{"canonicalCollision":{"differingQueries":["nextPermittedActions","refusalSeen"],"leftId":"trace-000076","representation":["GENERIC_DEVICE_V1"],"rightId":"trace-000001"},"fields":["baseline_profile"],"mixedRepresentationCount":1,"representationCount":1,"status":"FAIL"},"full_candidate":{"canonicalCollision":null,"fields":["active","backup_access_granted","baseline_profile","current_consent","device_verified","history_summary","owner_bound","payment_credential_enrolled","phase","unlock_enrolled"],"mixedRepresentationCount":0,"representationCount":51,"status":"PASS"},"predicted_minimal":{"canonicalCollision":null,"fields":["backup_access_granted","history_summary","payment_credential_enrolled","phase","unlock_enrolled"],"mixedRepresentationCount":0,"representationCount":47,"status":"PASS"}},"queryFieldCount":7,"recordCount":151} diff --git a/research/from-model-output-to-accepted-state/evidence/editorial-review/PUBLIC-DISPOSITION.md b/research/from-model-output-to-accepted-state/evidence/editorial-review/PUBLIC-DISPOSITION.md new file mode 100644 index 0000000..42f518b --- /dev/null +++ b/research/from-model-output-to-accepted-state/evidence/editorial-review/PUBLIC-DISPOSITION.md @@ -0,0 +1,85 @@ +# Public Disposition of Private Editorial Review + +Status: `OWNER-DISPOSITION / PUBLIC-MINIMIZED`
+Recorded: `2026-08-15`
+Source ID: `SRC-EDITORIAL-REVIEW-OPUS5-2026-08-15` + +## Source identity and access boundary + +| Field | Value | +|---|---| +| Source bytes | `19061` | +| Source SHA-256 | `1d56f0017a29e4a059276440943334cd3b6c09aea6f5bf57c1e7ed2d6ebb8d1e` | +| Source date | `2026-08-15` | +| Reviewer attribution | `OWNER-ATTESTED: Claude (Opus 5)` | +| Attribution verification | `NOT-RUNTIME-AUTHENTICATED` | +| Raw source access | `PRIVATE_RAW` | +| This record | `PUBLIC_MINIMIZED` | + +The owner supplied the private source and attested the reviewer attribution. +The byte count and SHA-256 above identify the supplied bytes. They do not +authenticate a model, runtime, account, sampling process, or author identity. +The raw review and its private locator are not included in this packet. + +This record publishes owner dispositions, not the review text. The review is +editorial assistance. It is not evidence, authorship, peer review, source +truth, or independent validation. Acceptance below authorizes an editorial +work item only; it does not promote the review or its source assertions into +paper evidence. + +## Disposition vocabulary + +- `ACCEPTED`: retain the bounded editorial correction in the work list. +- `PARTIALLY_ACCEPTED`: retain only the stated narrow correction. +- `REJECTED_NO_ACTION`: do not change the paper for the stated finding. + +## Accepted findings + +| ID | Disposition | Minimized owner decision | +|---|---|---| +| `ED-01` | `ACCEPTED` | Qualify the abstract's diagnostic count. Describe it as numbered holds across named suites and retain the section 9.1 warning that it is not a complete coverage count. | +| `ED-02` | `ACCEPTED` | State that the exploratory data do not support a ranking among P1, P2, and P3. Do not interpret their ordering as monotone benefit from added structure. | +| `ED-03` | `ACCEPTED` | Use `oracle-hidden` naming for the response exercise. Do not imply blinded assignment, a blinded assessor, runtime identity attestation, or independent systems. | +| `ED-04` | `ACCEPTED` | Give the single-operator threat an explicit limitation: one operator selected fixtures, authored checks and claims, and applied the claim markers. | +| `ED-05` | `ACCEPTED` | Remove the unlocated term inventory from the LinkedIn-oriented text. Retain only lineage statements a reader can locate and check. | +| `ED-06` | `ACCEPTED` | Write `R = 1 - S / N_app` alongside its expanded form, and clarify that it is only the complement of the stale-label fraction. Rename or otherwise disambiguate `pi` so it cannot be confused with pinned policy notation. | + +## Partially accepted finding + +| ID | Disposition | Minimized owner decision | +|---|---|---| +| `ED-07` | `PARTIALLY_ACCEPTED` | Foreground auditability as a bounded design aim and state the associated nonclaim more clearly. Do not add causal language claiming that model capability dominates scaffolding, or that changing a model caused a better result. The recorded experiment does not identify that causal comparison. | + +## Rejected or no-action findings + +| ID | Disposition | Minimized owner decision | +|---|---|---| +| `ED-08` | `REJECTED_NO_ACTION` | No Table 8 or Table 12 layout change. Visual inspection of the rendered PDF found aligned values, locators, and digests. The reported offset was a text-extraction reading-order artifact. | +| `ED-09` | `REJECTED_NO_ACTION` | No correction for current Lean receipt drift. The cited QueryQuotient byte, digest, and root-import statements were accurate, and the local append-only receipt chain identifies later root states. A historical receipt is not a claim about current path bytes. | +| `ED-10` | `REJECTED_NO_ACTION` | Do not relabel the response exercise as a determinism check. Frozen output agreement does not establish deterministic generation, runtime model identity, seed identity, sampling identity, or response independence. | + +No omitted private review text is incorporated by reference. A finding not +listed here is not accepted merely because it appeared in the private source. + +## Follow-up cold-read disposition + +Two later owner-supplied follow-up notes were reviewed under the same boundary. +The owner attributed them to Claude; that attribution is not runtime-authenticated. +The raw notes and their locators remain private. + +| Source ID | Bytes | SHA-256 | +|---|---:|---| +| `SRC-EDITORIAL-FOLLOWUP-2026-08-15-A` | `5289` | `3318b8fde20f95d751748b7fbd4f82a5edf5f735fa5d39c1253e6d14959b323e` | +| `SRC-EDITORIAL-FOLLOWUP-2026-08-15-B` | `5389` | `4f49a39f4b6ebcfad43f0fe081d954a80fe37907c15d4b178d85fc09579c1e7e` | + +Adopted follow-up corrections separate unsupported-claim counts from the +auditability contribution, report the three exploratory structured-arm Fisher +comparisons with their clustering ceiling, and describe 34 numbered holds as a +diagnostic inventory rather than coverage. A separate evidence audit also found +that the standalone `QueryQuotient.lean` compile needed its own append-only +receipt; receipt 000005 now binds that source and compile result. + +No action was taken on suggestions to rewrite a historical receipt, relabel the +output-recovery packet as a determinism test, or add a clarification already +present in the manuscript. The follow-up remains editorial assistance rather +than evidence, authorship, peer review, or independent validation. diff --git a/research/from-model-output-to-accepted-state/evidence/lean-query-quotient/BUILD-RECEIPT-000005.md b/research/from-model-output-to-accepted-state/evidence/lean-query-quotient/BUILD-RECEIPT-000005.md new file mode 100644 index 0000000..29765c0 --- /dev/null +++ b/research/from-model-output-to-accepted-state/evidence/lean-query-quotient/BUILD-RECEIPT-000005.md @@ -0,0 +1,95 @@ +# Local Build Receipt 000005 + +Observed: `2026-08-15T14:08:28-04:00` + +Status: `PASS_LOCAL_PINNED_STANDALONE_COMPILE` + +Previous receipt: `evidence/BUILD-RECEIPT-000004.md`, SHA-256 +`4c60d5cfc14126165576a3e3948cd2ee9ac9d526a80d8570fad37e83916fbd7c` + +## Change under test + +- compiled `ZeroState/QueryQuotient.lean` directly against the pinned package + environment; +- recorded the module's query-signature, componentwise-sufficiency, + separation, and kernel-exactness scope; and +- registered the standalone result without adding the module to the imports in + `ZeroState.lean` or rewriting any historical receipt. + +## Environment + +- Lean: `4.32.1`, commit `f054605aea4b840552cca2e725580bffd1e1b704` +- Lake: `5.0.0-src+f054605` +- Mathlib repository revision: `520045ab14e26149ee970e2e617ca04b09bde5d6` +- Mathlib remote: `https://github.com/leanprover-community/mathlib4.git` +- Platform: `x86_64-w64-windows-gnu` + +## Command and result + +The command ran from the package root. The Git values were process-local and +allowed Lake to inspect the pinned dependency under the sandbox's different +filesystem owner. No global Git configuration changed. + +```powershell +$env:GIT_CONFIG_COUNT = '1' +$env:GIT_CONFIG_KEY_0 = 'safe.directory' +$env:GIT_CONFIG_VALUE_0 = '*' +$env:ELAN_HOME = (Resolve-Path '.\.tooling\elan').Path +& '.\.tooling\elan\bin\lake.exe' env lean 'ZeroState/QueryQuotient.lean' +``` + +Result: exit code `0`; the command emitted no standard output or error text. + +This direct invocation asks the pinned Lean executable to accept the named +source file in the package environment. It is not a package-root build, a test +count, a theorem count, a lint receipt, or independent reproduction. + +## Bound packet bytes + +| Path | Bytes | SHA-256 | +|---|---:|---| +| `lean-toolchain` | 25 | `8e3538e0ab5f81a3ee04927d8838c8c674e0e112838b4b3ce87ec218143276af` | +| `lakefile.lean` | 190 | `bfebf4360c894cc2640f3928378744c7d6e287ba79155bcc3525647800606e6e` | +| `lake-manifest.json` | 3132 | `8635dea4df534bd04ce49790099b044f4dd9f75127a601eeb609713bd15a4f5c` | +| `ZeroState.lean` | 157 | `185fbf707d9311058d492f9fb53911e5816b32cffeb23b02cfec00f27a5b24e0` | +| `ZeroState/QueryQuotient.lean` | 3791 | `cfbb166202ade30abc0c79287ff8c1acf216e91a863121ade923218caede9896` | +| `README.md` | 13231 | `1118018a94337451a181b4c7b77c994c958ba4fc0a7b75bfc90eedc9c107b6e0` | +| `evidence/CLAIMS.md` | 9243 | `72f64a8887a162c8191faaf577d3c1c8ba922b7aa951308f5d3ba2704db92b66` | +| `evidence/SOURCES.md` | 8220 | `21c4784814437c2cea0aed4b0b6c489768cd78aa016ba50863b8badcc27f1bf8` | +| `evidence/BUILD-RECEIPT-000004.md` | 9345 | `4c60d5cfc14126165576a3e3948cd2ee9ac9d526a80d8570fad37e83916fbd7c` | + +## Bound supporting source + +| Path | Bytes | SHA-256 | +|---|---:|---| +| `.lake/packages/mathlib/Mathlib/Logic/Function/Basic.lean` | 54224 | `c70040d5d18050223271ceae210f4d57b59863dcc192c85d6432c7294b0ea4d1` | + +The supporting source contains the existing `Function.FactorsThrough` +definition used by the standalone module. Its identity does not establish that +the local packaging results are novel. + +## Root-import and assumption checks + +At the bound bytes, `ZeroState.lean` imports `Basic`, `Replay`, +`ProjectionSufficiency`, `FinitePermitMachine`, and `ReflectedBacklog`. It does +not import `QueryQuotient`. This receipt records a standalone compile and does +not alter the package-root state bound by receipt 000004. + +The standalone source contains no use of `sorry`, `admit`, a custom `axiom`, +`unsafe`, or `native_decide`. + +## Limits + +The compiled results package a query family as a function-valued signature and +characterize sufficiency and mutual factorization through equality of induced +kernel partitions. They use Mathlib's existing factorization vocabulary. They +do not select a unique encoding, establish a storage or runtime minimum, prove +novelty, validate an external-world model, or constitute upstream Mathlib +review or acceptance. + +The source and this receipt were developed with AI assistance. Human +understanding, maintainership, exact upstream source search, and Mathlib +maintainer discussion remain required before any contribution proposal. + +No publication, push, pull request, challenge submission, or upstream Mathlib +submission was performed. diff --git a/research/from-model-output-to-accepted-state/evidence/lean-query-quotient/QueryQuotient.lean b/research/from-model-output-to-accepted-state/evidence/lean-query-quotient/QueryQuotient.lean new file mode 100644 index 0000000..0d5b15c --- /dev/null +++ b/research/from-model-output-to-accepted-state/evidence/lean-query-quotient/QueryQuotient.lean @@ -0,0 +1,105 @@ +module + +public import Mathlib.Logic.Function.Basic + +/-! +# Query-relative canonical signatures + +This file packages a family of queries as one signature. A representation is +sufficient for that family when the signature factors through the +representation in the sense of `Function.FactorsThrough`. + +Exactness below means equality of the partitions induced by a signature and a +representation. It does not assert a unique encoding or data structure. +-/ + +namespace ZeroState + +/-- The answers to every declared query at one input. -/ +def querySignature {T I Q : Type*} (query : I → T → Q) : T → I → Q := + fun input index => query index input + +/-- A representation is sufficient when it preserves the complete signature. -/ +def SignatureSufficient {T I Q A : Type*} + (query : I → T → Q) (representation : T → A) : Prop := + (querySignature query).FactorsThrough representation + +/-- Every component query factors through the complete query signature. -/ +theorem component_factorsThrough_querySignature + {T I Q : Type*} (query : I → T → Q) (index : I) : + (query index).FactorsThrough (querySignature query) := by + intro x y hsignature + exact congrFun hsignature index + +/-- Signature equality is exactly pointwise equality of all query answers. -/ +theorem querySignature_eq_iff + {T I Q : Type*} (query : I → T → Q) (x y : T) : + querySignature query x = querySignature query y ↔ + ∀ index, query index x = query index y := by + constructor + · intro hsignature index + exact congrFun hsignature index + · intro hcomponents + funext index + exact hcomponents index + +/-- +Preserving a complete signature is equivalent to preserving each component +query separately. +-/ +theorem signatureSufficient_iff_components + {T I Q A : Type*} (query : I → T → Q) + (representation : T → A) : + SignatureSufficient query representation ↔ + ∀ index, (query index).FactorsThrough representation := by + constructor + · intro hsufficient index x y hrepresentation + exact congrFun (hsufficient hrepresentation) index + · intro hcomponents x y hrepresentation + funext index + exact hcomponents index hrepresentation + +/-- +A sufficient representation must distinguish inputs whose realized query +signatures differ. +-/ +theorem representation_ne_of_signature_ne + {T I Q A : Type*} {query : I → T → Q} + {representation : T → A} (hsufficient : SignatureSufficient query representation) + {x y : T} (hsignature : querySignature query x ≠ querySignature query y) : + representation x ≠ representation y := by + intro hrepresentation + exact hsignature (hsufficient hrepresentation) + +/-- +A representation is exact for the declared signature when each factors through +the other. This states equality of the induced kernel partitions without +choosing labels for their classes. +-/ +def SignatureExact {T I Q A : Type*} + (query : I → T → Q) (representation : T → A) : Prop := + SignatureSufficient query representation ∧ + representation.FactorsThrough (querySignature query) + +/-- Exactness is equality of the representation and signature kernels. -/ +theorem signatureExact_iff_kernel_eq + {T I Q A : Type*} (query : I → T → Q) + (representation : T → A) : + SignatureExact query representation ↔ + ∀ x y, + representation x = representation y ↔ + querySignature query x = querySignature query y := by + constructor + · rintro ⟨hsufficient, hreverse⟩ x y + exact ⟨ + fun hrepresentation => hsufficient hrepresentation, + fun hsignature => hreverse hsignature + ⟩ + · intro hkernel + constructor + · intro x y hrepresentation + exact (hkernel x y).mp hrepresentation + · intro x y hsignature + exact (hkernel x y).mpr hsignature + +end ZeroState diff --git a/research/from-model-output-to-accepted-state/evidence/reproduction/WINDOWS-CLEAN-CLONE-V3.md b/research/from-model-output-to-accepted-state/evidence/reproduction/WINDOWS-CLEAN-CLONE-V3.md new file mode 100644 index 0000000..a0447eb --- /dev/null +++ b/research/from-model-output-to-accepted-state/evidence/reproduction/WINDOWS-CLEAN-CLONE-V3.md @@ -0,0 +1,98 @@ +# Windows clean-clone raw-byte verification + +Status: `PASS` +Scope: full-repository checkout with Windows `core.autocrlf=true` +Network: none; the clone used local Git transport with `--no-local` +Source mutation: none +Audited commit: `817e4265563c124dedb6675b7c44d0082c3d8085` +Branch requested: `agent/publish-accepted-state-owner-review` + +## Environment + +- Windows NT build family: `26100` +- Windows PowerShell: `5.1.26100.9168` +- Git: `2.54.0.windows.1` +- Python: `3.14.6` +- Node.js: `24.18.0` +- Effective system Git setting: `core.autocrlf=true` +- Repository-root `.gitattributes`: `* -text` + +The resolved user-profile Python path, source-repository path, and generated +temporary-clone path are intentionally omitted. None was used as evidence. + +## Procedure + +The executed procedure is reproduced below with machine paths replaced by bounded +placeholders. + +```powershell +$auditSourcePath = "" +$auditClonePath = Join-Path ` + ([System.IO.Path]::GetTempPath()) ` + ("accepted-state-clean-clone-" + [guid]::NewGuid().ToString("N")) + +git -c core.autocrlf=true clone ` + --no-local ` + --branch agent/publish-accepted-state-owner-review ` + --single-branch ` + $auditSourcePath ` + $auditClonePath + +git -C $auditClonePath rev-parse HEAD +git -C $auditClonePath config --show-origin --get core.autocrlf +git -C $auditClonePath check-attr text -- ` + research/from-model-output-to-accepted-state/README.md ` + research/from-model-output-to-accepted-state/tools/verify_release.py + +$auditStatus = git -C $auditClonePath status --porcelain +if ($auditStatus) { throw "clean clone became dirty" } + +powershell -NoProfile -ExecutionPolicy Bypass ` + -File (Join-Path $auditClonePath ` + "research\from-model-output-to-accepted-state\tools\verify.ps1") +``` + +The verifier used temporary GUID-named JSON files outside the checkout and removed +them in its `finally` block. + +## Checkout observations + +```text +817e4265563c124dedb6675b7c44d0082c3d8085 +core.autocrlf=true +research/from-model-output-to-accepted-state/README.md: text: unset +research/from-model-output-to-accepted-state/tools/verify_release.py: text: unset +clone_status_clean +``` + +`text: unset` is the expected effect of the repository-root `* -text` rule. It +prevented checkout-time CRLF rewriting despite `core.autocrlf=true`. + +## Complete verifier output + +```text +VERIFY PASS +cross_language_parity=PASS +files=34 +payload_root=c87abd3580fcaa899eec65302d8e7d1ea5de17e0ce6730c38d5f03c8c547791c +manifest_sha256=fbb878a3dc3aa6af61e69c7e49c3836ceda80589d147e54ab410861a1ede9cc9 +status=PASS +``` + +Both implementations emitted this exact canonical report: + +```json +{"fileCount":34,"manifestSha256":"fbb878a3dc3aa6af61e69c7e49c3836ceda80589d147e54ab410861a1ede9cc9","payloadRoot":"c87abd3580fcaa899eec65302d8e7d1ea5de17e0ce6730c38d5f03c8c547791c","status":"PASS"} +``` + +`fileCount=34` excludes the self-referential manifest. The packet contained 35 +tracked regular files including that manifest. + +## Interpretation ceiling + +This test establishes that a full Windows checkout of the named v3 commit preserved +the packet's committed raw bytes under `core.autocrlf=true`, matched the committed +allowlist, byte lengths, SHA-256 values, and payload root, and produced identical +Python and JavaScript reports. It does not test the uncommitted v4 bytes, rebuild the +paper, reproduce excluded inputs, validate manuscript claims, or establish +independent replication. diff --git a/research/from-model-output-to-accepted-state/evidence/transition-stable-quotient/BUILD-RECEIPT-000001.md b/research/from-model-output-to-accepted-state/evidence/transition-stable-quotient/BUILD-RECEIPT-000001.md new file mode 100644 index 0000000..04bad7c --- /dev/null +++ b/research/from-model-output-to-accepted-state/evidence/transition-stable-quotient/BUILD-RECEIPT-000001.md @@ -0,0 +1,95 @@ +# Build Receipt 000001 + +## Identity + +- Packet: `transition-stable-quotient` +- Receipt status: `OWNER_REVIEW` +- Recorded at UTC: `2026-08-15T12:15:47Z` +- Receipt policy: append-only +- Release authority: not granted +- Publication status: not published + +This receipt binds the shareable packet files listed below. It excludes itself to avoid a self-referential digest. It does not authorize publication, execution against a real device, or generalization beyond the frozen finite model. + +## Source boundary + +The executable experiment reads one source outside this packet: + +| Source | Bytes | SHA-256 | Role | +| --- | ---: | --- | --- | +| `../device-activation-fixture/dataset/device-activation-v1.json` | 98,769 | `a2dece0b00e9659e3f50df307bd41dedc722a1c5b93b16153f616d1f2b58a179` | Frozen synthetic trace-prefix dataset | + +The packet cites Moore and Hopcroft as established prior work in `SOURCES.md`. This receipt does not attest to downloaded copies of those publications. It attests only to the local bytes listed here and to the verifier result below. + +## Runtime identity + +| Runtime | Version | +| --- | --- | +| Windows PowerShell | `5.1.26100.9168` | +| Python | `3.14.6` | +| Node.js | `v24.18.0` | + +## Verification command + +Direct script invocation was blocked by the host Windows PowerShell execution policy before the verifier ran. The packet was then executed with a process-scoped policy bypass: + +```powershell +powershell.exe -NoProfile -ExecutionPolicy Bypass -File .\work\transition-stable-quotient\verify.ps1 +``` + +Exit code: `0` + +Exact standard output: + +```text +VERIFY PASS +python_javascript_canonical_parity=PASS +frozen_report_match=PASS +records=151 +events=10 +full_classes=33_to_33 +reduced_classes=18_to_33 +stable_partition_equal=PASS +invalid_input_fail_closed=PASS +synthetic_two_round_refinement=PASS +report_sha256=1b0e78adcac732561a0263ef2704d53b397597c502f81e88a0999a37232df183 +``` + +Standard error was empty. + +## Bound file manifest + +The canonical manifest is ordered by the UTF-8 byte sequence of the slash-normalized relative path. Each line is: + +```text +relative-pathbyte-countsha256 +``` + +| Relative path | Bytes | SHA-256 | +| --- | ---: | --- | +| `CLAIMS.md` | 1,201 | `73c8317e76397e78f85b34f04c406cd917101819596aa82e76d8731e4d483834` | +| `CONTRIBUTIONS.md` | 644 | `309f61f100d263743c4e5a6f3b0dcc62ef4dfd48d662dbfcef7df87d18fdd49d` | +| `README.md` | 1,360 | `5b3747d7aa42afbf24078a30e64023c4c11c668aca53561cb6616e8b53b890c2` | +| `RESULTS.md` | 1,912 | `317e831756ac587d40f63444ee75b5d6ac7b3e78eccd474329a55a4c854f7704` | +| `results/expected-report.json` | 2,627 | `1b0e78adcac732561a0263ef2704d53b397597c502f81e88a0999a37232df183` | +| `SOURCES.md` | 968 | `51aef6af90b28432553b935163d3798759dea1c127247f0b64b36108269ba628` | +| `SPEC.md` | 2,384 | `2af1ff0ebb801229da8956a90d6ee38fc11a8ca2fe80fb5c8838676d557c3897` | +| `src/analyze.js` | 10,174 | `f1dddef27258568e0d401f8be2bdb68b0b74df1bd04bc5cba7f99234fef91273` | +| `src/analyze.py` | 10,777 | `535b8eaa0cea669bb0e6ef6eb13adcd61b0ad23b41bdf39d7e4dc983eb5b7602` | +| `verify.ps1` | 8,548 | `b781799ee714159f661717d86e772708f7831ea1bb4c607286175c1b0765a7bd` | + +Canonical packet manifest SHA-256: + +```text +ae54e6bbba4cd6c3f1eedee8cd1f97c7cc9fc97e54f2dfab53c666331d71e513 +``` + +## Accepted interpretation + +The verifier establishes local replay of the frozen finite experiment. It establishes Python and JavaScript canonical parity, equality with the frozen report, declared class counts, stable-partition equality, fail-closed invalid input, and a two-round synthetic refinement case. + +The receipt does not establish a new automata theorem, real-device behavior, legal authority, operational safety, global representation minimality, open-system completeness, or external replication. + +## Owner review gate + +The packet is technically verified and remains in `OWNER_REVIEW`. Owner acceptance, public-release approval, and any downstream claim promotion must be recorded separately. Absence of a failed check is not publication authority. diff --git a/research/from-model-output-to-accepted-state/evidence/transition-stable-quotient/expected-report.json b/research/from-model-output-to-accepted-state/evidence/transition-stable-quotient/expected-report.json new file mode 100644 index 0000000..eaf487d --- /dev/null +++ b/research/from-model-output-to-accepted-state/evidence/transition-stable-quotient/expected-report.json @@ -0,0 +1 @@ +{"comparison":{"fullStableClassCount":33,"reducedStableClassCount":33,"sameStablePartition":true,"stableClassCountDelta":0},"dataset":{"eventCount":10,"eventLabels":["ACCEPT_CONSENT","ACTIVATE","BIND_OWNER","BOOT","ENROLL_PAYMENT_CREDENTIAL","ENROLL_UNLOCK","GRANT_BACKUP_ACCESS","REFUSE_CONSENT","REVOKE_CONSENT","VERIFY_DEVICE"],"recordCount":151,"sha256":"a2dece0b00e9659e3f50df307bd41dedc722a1c5b93b16153f616d1f2b58a179"},"experiments":[{"firstInstabilityWitness":null,"fixedPointStable":true,"initialClassCount":33,"initialPartitionStable":true,"name":"FULL_7_QUERY_SIGNATURE","queryFields":["consentRecorded","mayActivate","mayAuthorizePayment","mayDecryptPrivateData","mayRestoreBackup","nextPermittedActions","refusalSeen"],"refinementRounds":0,"rounds":[],"stableClassCount":33,"stableClassSizes":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,3,3,6,6,12,12,37,37],"stablePartitionSha256":"2f129b2ac6c060d253831dbded1810cfd64b030fa6b8a0514d6e048fc7086187"},{"firstInstabilityWitness":{"classBeforeSplit":0,"event":"ACCEPT_CONSENT","left":{"caseId":"trace-000001","eventStatus":"ENABLED","successorCaseId":"trace-000002","successorClass":2,"trace":"BOOT"},"right":{"caseId":"trace-000000","eventStatus":"REFUSED","successorCaseId":"trace-000000","successorClass":0,"trace":"EMPTY"}},"fixedPointStable":true,"initialClassCount":18,"initialPartitionStable":false,"name":"REDUCED_WITHOUT_NEXT_PERMITTED_ACTIONS","queryFields":["consentRecorded","mayActivate","mayAuthorizePayment","mayDecryptPrivateData","mayRestoreBackup","refusalSeen"],"refinementRounds":1,"rounds":[{"classCountAfter":33,"classCountBefore":18,"witness":{"classBeforeSplit":0,"event":"ACCEPT_CONSENT","left":{"caseId":"trace-000001","eventStatus":"ENABLED","successorCaseId":"trace-000002","successorClass":2,"trace":"BOOT"},"right":{"caseId":"trace-000000","eventStatus":"REFUSED","successorCaseId":"trace-000000","successorClass":0,"trace":"EMPTY"}}}],"stableClassCount":33,"stableClassSizes":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,3,3,6,6,12,12,37,37],"stablePartitionSha256":"2f129b2ac6c060d253831dbded1810cfd64b030fa6b8a0514d6e048fc7086187"}],"format":"TRANSITION_STABLE_QUOTIENT_REPORT_V1","scope":{"claim":"finite application of established deterministic partition refinement","domain":"complete trace-prefix graph declared by generic device activation v1","notClaimed":"new automata theorem, real-device validation, or global encoding minimality"},"semantics":{"enabled":"advance to the child trace","refused":"emit REFUSED and remain at the current trace"},"transitionStatusCounts":{"enabled":150,"refused":1360,"total":1510}} diff --git a/research/from-model-output-to-accepted-state/figures.py b/research/from-model-output-to-accepted-state/figures.py new file mode 100644 index 0000000..6d9744c --- /dev/null +++ b/research/from-model-output-to-accepted-state/figures.py @@ -0,0 +1,551 @@ +"""Vector figures for the paper. + +Every figure is emitted as standalone SVG so the PDF renders them as vectors +rather than resampled bitmaps. Colors are chosen to survive grayscale printing: +every color-coded element also carries a text label or a distinct stroke style. +""" + +from __future__ import annotations + +from html import escape +from pathlib import Path + +OUT = Path(__file__).resolve().parent / "figures" +OUT.mkdir(parents=True, exist_ok=True) + +INK = "#101828" +MUTED = "#5A6474" +RULE = "#C9D0DA" +SURFACE = "#F4F6F9" +ACCENT = "#1D4E89" +ACCENT_SOFT = "#E3ECF6" +PASS = "#2C6E49" +PASS_SOFT = "#E1EFE7" +HOLD = "#9A5B0B" +HOLD_SOFT = "#F7EBD7" +STOP = "#A32E22" +STOP_SOFT = "#F7E2DF" +PAPER = "#FFFFFF" + +SERIF = "Constantia, Cambria, Georgia, serif" +SANS = "'Segoe UI', 'Helvetica Neue', Arial, sans-serif" +MONO = "Consolas, 'Cascadia Mono', monospace" + + +def head( + w: int, + h: int, + figure_id: str, + accessible_title: str, + accessible_description: str, +) -> str: + return ( + f'' + f'{escape(accessible_title)}' + f'{escape(accessible_description)}' + '' + f'' + f'' + f'' + f'' + '' + ) + + +def title(t: str, sub: str, w: int) -> str: + return ( + f'{t}' + f'{sub}' + f'' + ) + + +def box(x, y, w, h, label, sub="", fill=ACCENT_SOFT, stroke=ACCENT, tc=INK, fs=15.5): + out = ( + f'' + ) + cy = y + h / 2 + (0 if not sub else -5) + out += ( + f'{label}' + ) + if sub: + out += ( + f'{sub}' + ) + return out + + +# -------------------------------------------------------------------------- +# Figure 1. Where the proposer sits +# -------------------------------------------------------------------------- +def figure1() -> str: + W, H = 1180, 470 + s = head( + W, + H, + "fig1", + "The boundary around a probabilistic proposer", + "A proposer supplies a candidate to a deterministic gate. The gate records " + "stage receipts, replays an accepted projection, acts on the external world " + "only through an authorized effect, and observes that world through a " + "declared instrument.", + ) + s += '' + s += title( + "The boundary around a probabilistic proposer", + "The proposer suggests. A separate path decides, acts, observes, and accepts.", + 1140, + ) + s += '' + + # world band + s += ( + f'' + ) + s += ( + f'' + 'External world' + ) + s += ( + f'' + 'Partly hidden. Changing. Never read directly, only through a declared ' + 'instrument that has its own limits.' + ) + + # effect arrow: up into the world, on the left + s += ( + f'' + ) + s += ( + f'' + 'authorized effect' + ) + + # observation arrow: down out of the world, on the right + s += ( + f'' + ) + s += ( + f'' + 'qualified observation' + ) + + # protocol boundary + s += ( + f'' + ) + s += ( + f'PROTOCOL BOUNDARY' + ) + + # the deterministic span, tinted so the caption can point at it + s += ( + f'' + ) + s += ( + f'the tinted span is the whole of the determinism claim' + ) + + s += box(44, 256, 200, 80, "Proposer", "model, person, or program", + fill=SURFACE, stroke=MUTED) + s += ( + f'' + ) + s += ( + f'' + 'candidate' + ) + + s += box(328, 256, 192, 80, "Deterministic gate", "pinned policy and schemas") + s += ( + f'' + ) + + s += box(586, 256, 204, 80, "Append-only receipts", "one record per stage") + s += ( + f'' + ) + s += ( + f'' + 'replay' + ) + + s += box(856, 256, 248, 80, "Accepted projection", "a governance state", + fill=PASS_SOFT, stroke=PASS) + + s += ( + f'' + 'Pinned bytes in, projection out. The proposer that produced the candidate ' + 'and the world the effect lands in both sit outside it.' + ) + + s += '' + return s + + +# -------------------------------------------------------------------------- +# Figure 2. Lifecycle +# -------------------------------------------------------------------------- +def figure2() -> str: + W, H = 1180, 420 + stages = [ + "PROPOSE", "NORMALIZE", "CHECK", "AUTHORIZE", "PREPARE", + "EXECUTE", "OBSERVE", "ACCEPT", "OUTCOME", "CORRECT", + ] + s = head( + W, + H, + "fig2", + "The proposed ten-stage lifecycle", + "Ten conceptual stages run from proposal through correction. Refusal and " + "unresolved are recorded exits at every stage. Acceptance is the only " + "state-update gate. A correction starts a new governed transition and can " + "change state only after a new acceptance record.", + ) + s += '' + s += title( + "The proposed ten-stage lifecycle", + "Conceptual profile. ACCEPT changes state; CORRECT begins a new transition and cannot bypass acceptance.", + 1140, + ) + s += '' + + s += ( + f'' + f'PROPOSED' + ) + + x0, gap, bw, bh, y = 24, 115.6, 104, 60, 120 + for i, name in enumerate(stages): + x = x0 + i * gap + is_accept = name == "ACCEPT" + is_correct = name == "CORRECT" + s += box( + x, y, bw, bh, name, f"stage {i + 1}", + fill=PASS_SOFT if is_accept else HOLD_SOFT if is_correct else ACCENT_SOFT, + stroke=PASS if is_accept else HOLD if is_correct else ACCENT, + fs=13.5, + ) + if i < len(stages) - 1: + s += ( + f'' + ) + # drop lines to the exit rail + s += ( + f'' + ) + + # accept emphasis + s += ( + f'' + 'state-update gate' + ) + + rail = y + bh + 34 + s += ( + f'' + ) + + # exits + s += box(150, rail + 30, 300, 62, "REFUSE", + "a required check is decisively false", + fill=STOP_SOFT, stroke=STOP, fs=15) + s += box(560, rail + 30, 300, 62, "UNRESOLVED", + "required evidence is unknown, stale, or errored", + fill=HOLD_SOFT, stroke=HOLD, fs=15) + + s += ( + f'' + ) + s += ( + f'' + ) + + s += ( + f'' + 'Both exits are recorded and kept. Neither advances the accepted projection.' + ) + s += ( + f'' + 'CORRECT appends a requested supersession and starts a new governed transition.' + ) + s += ( + f'' + 'It changes state only after a new ACCEPT record; it never edits the prior record.' + ) + + s += '' + return s + + +# -------------------------------------------------------------------------- +# Figure 3. Three stores +# -------------------------------------------------------------------------- +def figure3() -> str: + W, H = 1180, 450 + s = head( + W, + H, + "fig3", + "Three stores with three retention rules", + "The minimized event history follows an additions-only protocol rule. " + "Detecting rewrites requires an authenticated current tip. Restricted raw " + "evidence and the redacted public projection follow separate retention rules.", + ) + s += '' + s += title( + "Three stores, three retention rules", + "The event protocol permits additions only; rewrite detection requires an authenticated current tip.", + 1140, + ) + s += '' + + cols = [ + ("Event history", "minimized", ACCENT, ACCENT_SOFT, [ + "Typed status and commitments.", + "Protocol rule: additions only.", + "Rewrite detection requires an", + "authenticated current tip.", + ]), + ("Evidence store", "restricted", HOLD, HOLD_SOFT, [ + "The material a check actually read.", + "Access controlled. Retention bounded.", + "Deletable, and deletion is recorded.", + ]), + ("Public projection", "redacted", PASS, PASS_SOFT, [ + "Only what an owner released.", + "Rebuilt, not edited, on change.", + "Allowlisted bytes with digests.", + ]), + ] + x = 24 + for name, tag, stroke, fill, lines in cols: + s += ( + f'' + ) + s += ( + f'' + f'{name}' + ) + s += ( + f'{tag.upper()}' + ) + for j, ln in enumerate(lines): + s += ( + f'' + f'{ln}' + ) + x += 384 + + s += ( + f'' + 'An erasure record can remain in the event history after the restricted object ' + 'is destroyed. Hashing a personal record does not anonymize it,' + ) + s += ( + f'' + 'and a deletion receipt does not by itself establish legal compliance.' + ) + s += '' + return s + + +# -------------------------------------------------------------------------- +# Figure 4. Six signals +# -------------------------------------------------------------------------- +def figure4() -> str: + W, H = 1180, 430 + s = head( + W, + H, + "fig4", + "Six evidence conditions reported separately", + "Protocol calibration, consequence, evidence, integrity, privacy, and " + "activity each retain a typed status. No combined score is used.", + ) + s += '' + s += title( + "Six conditions reported separately, rather than averaged into one score", + "A single score would let a strong dimension conceal the one that mattered.", + 1140, + ) + s += '' + + items = [ + ("Protocol calibration", ("Did every required check pass,", "with nothing unresolved?")), + ("Consequence", ("Is a named consequence active", "under the pinned policy?")), + ("Evidence", ("How much required evidence", "came back decisive?")), + ("Integrity", ("Do the recorded bytes still hash", "to their commitments?")), + ("Privacy", ("Did anything cross the declared", "disclosure boundary?")), + ("Activity", ("What has moved recently,", "and what has gone quiet?")), + ] + for i, (name, q_lines) in enumerate(items): + cx = 24 + (i % 3) * 384 + cy = 98 + (i // 3) * 126 + s += ( + f'' + ) + s += ( + f'' + ) + s += ( + f'{name}' + ) + for j, q in enumerate(q_lines): + s += ( + f'{q}' + ) + s += ( + f'PASS / FAIL / UNKNOWN / STALE / ERROR / N-A' + ) + + s += ( + f'' + 'Every color is paired with a text label and a reason code, so the display ' + 'survives grayscale printing and color vision deficiency.' + ) + s += ( + f'' + 'The display is a projection of the record. The record remains canonical.' + ) + s += '' + return s + + +# -------------------------------------------------------------------------- +# Figure 5. Repair loop +# -------------------------------------------------------------------------- +def figure5() -> str: + W, H = 1180, 380 + s = head( + W, + H, + "fig5", + "The seven-step repair pattern used in the case study", + "The case-study repairs freeze bytes, state the claim, construct a minimal " + "false pass, add a rejecting contract, pin a regression test, preserve the " + "correction, and state the remaining limit.", + ) + s += '' + s += title( + "The repair pattern, which ends in a stated limit rather than a clean bill", + "Every correction in the case study followed these seven steps in this order.", + 1140, + ) + s += '' + + steps = [ + ("1", "Freeze", "pin the exact bytes under review"), + ("2", "State", "write the claim being tested"), + ("3", "Break", "build the smallest false pass"), + ("4", "Type", "add a contract that rejects it"), + ("5", "Pin", "add a regression or mutation test"), + ("6", "Keep", "record the correction, delete nothing"), + ("7", "Bound", "state what remains outside the check"), + ] + x0, gap, bw = 24, 163.5, 148 + for i, (n, name, sub) in enumerate(steps): + x = x0 + i * gap + last = i == len(steps) - 1 + s += ( + f'' + ) + s += ( + f'' + ) + s += ( + f'{n}' + ) + s += ( + f'{name}' + ) + words = sub.split() + lines, cur = [], "" + for w in words: + if len(cur) + len(w) + 1 > 17: + lines.append(cur) + cur = w + else: + cur = f"{cur} {w}".strip() + lines.append(cur) + for j, ln in enumerate(lines[:3]): + s += ( + f'{ln}' + ) + if not last: + s += ( + f'' + ) + + s += ( + f'' + ) + s += ( + f'the stated limit becomes the next claim to test' + ) + s += ( + f'' + 'In these case-study corrections, the omitted step was the minimal false-pass test. ' + 'A check that was never attacked has only been asserted.' + ) + s += '' + return s + + +FIGURES = { + "fig1-boundary.svg": figure1, + "fig2-lifecycle.svg": figure2, + "fig3-stores.svg": figure3, + "fig4-signals.svg": figure4, + "fig5-repair.svg": figure5, +} + + +def main() -> None: + for name, fn in FIGURES.items(): + (OUT / name).write_text(fn(), encoding="utf-8") + print(f"wrote {name}") + + +if __name__ == "__main__": + main() diff --git a/research/from-model-output-to-accepted-state/figures/fig1-boundary.svg b/research/from-model-output-to-accepted-state/figures/fig1-boundary.svg new file mode 100644 index 0000000..d90b727 --- /dev/null +++ b/research/from-model-output-to-accepted-state/figures/fig1-boundary.svg @@ -0,0 +1 @@ +The boundary around a probabilistic proposerA proposer supplies a candidate to a deterministic gate. The gate records stage receipts, replays an accepted projection, acts on the external world only through an authorized effect, and observes that world through a declared instrument.The boundary around a probabilistic proposerThe proposer suggests. A separate path decides, acts, observes, and accepts.External worldPartly hidden. Changing. Never read directly, only through a declared instrument that has its own limits.authorized effectqualified observationPROTOCOL BOUNDARYthe tinted span is the whole of the determinism claimProposermodel, person, or programcandidateDeterministic gatepinned policy and schemasAppend-only receiptsone record per stagereplayAccepted projectiona governance statePinned bytes in, projection out. The proposer that produced the candidate and the world the effect lands in both sit outside it. \ No newline at end of file diff --git a/research/from-model-output-to-accepted-state/figures/fig2-lifecycle.svg b/research/from-model-output-to-accepted-state/figures/fig2-lifecycle.svg new file mode 100644 index 0000000..1e71e40 --- /dev/null +++ b/research/from-model-output-to-accepted-state/figures/fig2-lifecycle.svg @@ -0,0 +1 @@ +The proposed ten-stage lifecycleTen conceptual stages run from proposal through correction. Refusal and unresolved are recorded exits at every stage. Acceptance is the only state-update gate. A correction starts a new governed transition and can change state only after a new acceptance record.The proposed ten-stage lifecycleConceptual profile. ACCEPT changes state; CORRECT begins a new transition and cannot bypass acceptance.PROPOSEDPROPOSEstage 1NORMALIZEstage 2CHECKstage 3AUTHORIZEstage 4PREPAREstage 5EXECUTEstage 6OBSERVEstage 7ACCEPTstage 8OUTCOMEstage 9CORRECTstage 10state-update gateREFUSEa required check is decisively falseUNRESOLVEDrequired evidence is unknown, stale, or erroredBoth exits are recorded and kept. Neither advances the accepted projection.CORRECT appends a requested supersession and starts a new governed transition.It changes state only after a new ACCEPT record; it never edits the prior record. \ No newline at end of file diff --git a/research/from-model-output-to-accepted-state/figures/fig3-stores.svg b/research/from-model-output-to-accepted-state/figures/fig3-stores.svg new file mode 100644 index 0000000..e276c43 --- /dev/null +++ b/research/from-model-output-to-accepted-state/figures/fig3-stores.svg @@ -0,0 +1 @@ +Three stores with three retention rulesThe minimized event history follows an additions-only protocol rule. Detecting rewrites requires an authenticated current tip. Restricted raw evidence and the redacted public projection follow separate retention rules.Three stores, three retention rulesThe event protocol permits additions only; rewrite detection requires an authenticated current tip.Event historyMINIMIZEDTyped status and commitments.Protocol rule: additions only.Rewrite detection requires anauthenticated current tip.Evidence storeRESTRICTEDThe material a check actually read.Access controlled. Retention bounded.Deletable, and deletion is recorded.Public projectionREDACTEDOnly what an owner released.Rebuilt, not edited, on change.Allowlisted bytes with digests.An erasure record can remain in the event history after the restricted object is destroyed. Hashing a personal record does not anonymize it,and a deletion receipt does not by itself establish legal compliance. \ No newline at end of file diff --git a/research/from-model-output-to-accepted-state/figures/fig4-signals.svg b/research/from-model-output-to-accepted-state/figures/fig4-signals.svg new file mode 100644 index 0000000..0f2bad7 --- /dev/null +++ b/research/from-model-output-to-accepted-state/figures/fig4-signals.svg @@ -0,0 +1 @@ +Six evidence conditions reported separatelyProtocol calibration, consequence, evidence, integrity, privacy, and activity each retain a typed status. No combined score is used.Six conditions reported separately, rather than averaged into one scoreA single score would let a strong dimension conceal the one that mattered.Protocol calibrationDid every required check pass,with nothing unresolved?PASS / FAIL / UNKNOWN / STALE / ERROR / N-AConsequenceIs a named consequence activeunder the pinned policy?PASS / FAIL / UNKNOWN / STALE / ERROR / N-AEvidenceHow much required evidencecame back decisive?PASS / FAIL / UNKNOWN / STALE / ERROR / N-AIntegrityDo the recorded bytes still hashto their commitments?PASS / FAIL / UNKNOWN / STALE / ERROR / N-APrivacyDid anything cross the declareddisclosure boundary?PASS / FAIL / UNKNOWN / STALE / ERROR / N-AActivityWhat has moved recently,and what has gone quiet?PASS / FAIL / UNKNOWN / STALE / ERROR / N-AEvery color is paired with a text label and a reason code, so the display survives grayscale printing and color vision deficiency.The display is a projection of the record. The record remains canonical. \ No newline at end of file diff --git a/research/from-model-output-to-accepted-state/figures/fig5-repair.svg b/research/from-model-output-to-accepted-state/figures/fig5-repair.svg new file mode 100644 index 0000000..10c73f1 --- /dev/null +++ b/research/from-model-output-to-accepted-state/figures/fig5-repair.svg @@ -0,0 +1 @@ +The seven-step repair pattern used in the case studyThe case-study repairs freeze bytes, state the claim, construct a minimal false pass, add a rejecting contract, pin a regression test, preserve the correction, and state the remaining limit.The repair pattern, which ends in a stated limit rather than a clean billEvery correction in the case study followed these seven steps in this order.1Freezepin the exactbytes underreview2Statewrite the claimbeing tested3Breakbuild thesmallest falsepass4Typeadd a contractthat rejects it5Pinadd a regressionor mutation test6Keeprecord thecorrection,delete nothing7Boundstate whatremains outsidethe checkthe stated limit becomes the next claim to testIn these case-study corrections, the omitted step was the minimal false-pass test. A check that was never attacked has only been asserted. \ No newline at end of file diff --git a/research/from-model-output-to-accepted-state/paper/From-Model-Output-to-Accepted-State-Owner-Review-v4-LinkedIn.md b/research/from-model-output-to-accepted-state/paper/From-Model-Output-to-Accepted-State-Owner-Review-v4-LinkedIn.md new file mode 100644 index 0000000..1491870 --- /dev/null +++ b/research/from-model-output-to-accepted-state/paper/From-Model-Output-to-Accepted-State-Owner-Review-v4-LinkedIn.md @@ -0,0 +1,830 @@ +Working paper · owner-review draft +# From Model Output to Accepted State +A typed state boundary for AI-assisted operations + + **Jake Tiller** · independent operator and researcher + 15 August 2026 · public case-study evidence pinned to commit + `275d0b3e7474` · local owner-review packets receipted separately + · CC BY 4.0 + +**Abstract** + +A language model produces plausible proposals. A proposal is not an authorization, a completed action, an observation, or an accepted record of state. I built a reference implementation, contracts, reducers, and test harnesses that keep those records separate within the evaluated boundary. I used them on a public software project and found real defects, including defects in the system itself. + +This paper proposes the State Transition Protocol as a typed boundary around a probabilistic proposer. A conceptual ten-stage lifecycle separates proposal from authority, execution, observation, acceptance, and correction. The broader observation algebra and six-condition reporting surface are also design proposals. PROPOSED + +The public packet implements a narrower seven-event instrument profile over synthetic fixtures; it is not a complete implementation of that lifecycle. Within the tested slice, deterministic reducers rebuild a finite projection from pinned inputs. TESTED + +Three additional local packets test a finite query representation, transition-stable refinement, and recovery of frozen answer fields from one compact prompt. That prompt declared separate gate, forecast, and pending-resolution fields; all three responses recovered the frozen finite outputs. No real forecast was issued or resolved. These local results extend the analysis but are not part of the pinned public commit. TESTED + +The evidence is finite and I state its limits precisely. Separate JavaScript and Python ports derived from the same specification and fixture corpus produce the same projection root over the pinned inputs, and did so on runtime versions two releases apart from the pinned continuous-integration environment. This is cross-language replay parity, not independent reproduction. Thirty-four runner-reported numbered holds across twelve suites are a diagnostic inventory, not a coverage measure. A data contract found that six public views of one 439-term source had drifted apart, and that 258 shared terms disagreed on review status. A production observation found 100 of 102 paths matching and left two unresolved rather than rounding them off. TESTED + +The most useful results are the ones that went against me. In a refusal experiment, an unstructured larger-model control recorded zero unsupported claims, matching the excluded P4 arm and below the rates in the eligible P1-P3 structured arms. That comparison concerns unsupported-claim counts; it does not establish that either structure or model choice causally improved accuracy. The auditability contribution lies in making the artifacts, assumptions, and limits behind the comparison inspectable. An experiment described by its repository as preregistered denied its own doctrine on a single counterexample. One deployment receipt in this repository contradicts itself across two fields, and the schema gate passes it. Those are reported here at full strength. + +## 1. The problem, in plain terms + +An AI system can report that something happened when several different things may be true. It may have suggested an action. A tool may have accepted the request. The action may have started and not finished. A sensor may have returned an unclear reading. A person may have looked at the record without accepting it. The world may have moved again before anyone asked. + +I hit this while building Delta Atlas, a public set of tools for finding gaps and unstated assumptions in AI plans. The project grew into static pages, JSON data, harnesses, and hosted releases. The same confusion kept appearing at every level. A model answered confidently from a stale copy of the glossary. A test passed while checking only the records that happened to be loaded. A merge completed without showing that the host served the merged bytes. A deployment succeeded without showing that every route had converged. A green panel reported on synthetic evidence. + +None of that needed a new theory of attention. It needed a boundary. A transformer maps context to candidate continuations. Once a candidate can call a tool, move money, change infrastructure, or become the memory the next session reads, the surrounding system has to answer questions the architecture never addresses. + +> Can a system use a stochastic model as a proposer while rebuilding its governed state through explicit, typed, replayable transitions, without mistaking a deterministic procedure for truth? + +The supported answer is narrow and useful. A reference implementation can force explicit promotion steps and produce identical accepted-state projections from pinned policy, pinned event bytes, and a pinned reducer version. It can hold unresolved evidence open instead of rounding it to pass. It can keep counterexamples and corrections in the record. It cannot show that a source was honest, that an authority was lawful, that an observation was complete, or that the chosen policy was wise. + +The public evidence is narrower than the conceptual protocol. It establishes finite behavior for an instrumented seven-event profile and related harnesses. It does not establish end-to-end conformance with the proposed ten-stage lifecycle. TESTED + +### Six terms used throughout +An **output** is anything a component emits before validation or acceptance. An **outcome** is a later qualified record of consequence. A **receipt** is a typed record of one check, action, observation, decision, or correction. A **reducer** is a deterministic function that rebuilds accepted state from policy and event history. A **projection** is that rebuilt view, not the world. An **instrument** is whatever acts on or observes a system, with its own limits. An unaccepted output remains in candidate or receipt space. It is not silently promoted to governed state or relabeled as an outcome. + +## 2. How to read the claims + +Confidence in prose is not evidence. Result-bearing empirical and implementation claims use one of four markers at paragraph, table-row, or block level. Unmarked prose explains terminology, motivation, or limits and should not be read as an additional empirical result. The marker sets what you are entitled to conclude. + +**Table 1. Claim markers. A marker states the strongest reading the evidence supports, not the author's confidence.** + +- **TESTED** - What it means Exact behavior over a named finite corpus, reproducible by a stated command.; What it never means That the behavior generalizes past that corpus. +- **OBSERVED** - What it means A bounded inspection of a named surface at a recorded time.; What it never means That the surface still looks that way, or that other surfaces match. +- **PROPOSED** - What it means Specified or reasoned beyond the tested artifact boundary. It may have a + partial fixture, but the marked claim itself is not established.; What it never means Implemented behavior. Do not cite it as a result. +- **OPEN** - What it means I do not know, and I say where the evidence stops.; What it never means That the question is unimportant. + +Implemented, tested, merged, deployed, observed, and accepted are six verbs, not one. A result can hold several at once. None of them implies the next. Section 11 states the full claim boundary once, so the rest of the paper does not repeat it paragraph by paragraph. + +### Digests and locators +Every result-bearing project artifact referenced here is pinned by SHA-256 over its exact bytes. Digests appear in text as the first twelve hexadecimal characters, which is enough to identify a file and short enough to read. Appendix C lists full values, exact locators, and the applicable verification boundary. Public case-study claims are bound to commit `275d0b3e7474` of the `Resilience-Ledger` repository. + +**Artifact identity is part of the result** + +The Calibration Ledger document I hold does not match the Ledger digest printed in State Transition Protocol v1.1, and I could not retrieve the bytes that digest was computed over. I do not know whether the document is a later revision, a sibling artifact, or an unrelated export. I have not treated the two as equivalent anywhere in this paper. OPEN + +That mismatch is evidence, not clutter. An identity check stopped a convenient substitution that prose alone would have waved through. + +## 3. The boundary + +Write `W(k)` for an external world state that is partly hidden, `O` for the qualified observations recorded so far, and `A(k)` for the accepted projection. A model generates a candidate change stochastically. The probability it assigns gives the candidate no standing. + + delta(k) ~ pi( A(k), O(≤k), H(k) ) candidate generation + A(k) = R( P(g), L(≤k) ) accepted projection + +_pi the candidate-generating distribution, not an authorization policy · P(g) pinned policy bytes at generation g · L(≤k) the valid event prefix through sequence k · R a pinned reducer version · H(k) whatever context the model had, which the protocol does not model_ + +The determinism claim is narrower than the word usually suggests. It starts at identified input bytes and a policy generation, and it ends at a projected record. It does not cover the model that produced the candidate. It does not cover undisclosed external state, physical effects, the people involved, the network in between, or anything that happens afterward. + +### Two lanes, one acceptance boundary +In plain terms, the deterministic lane decides whether the current record permits an action. A parallel forecast lane may record uncertainty about a later event. The two records can inform one another, but neither can silently become the other. A high forecast probability cannot promote an unresolved gate to pass. + + g_t = G( P(g), L(≤t) ) in PASS | UNRESOLVED | FAIL + execute_t = 1 only if g_t = PASS + + f_t = ( forecast_id, claim, event, p, I_t, horizon, resolution_rule, + scoring_rule_id, model_id, policy_id, scenario_id, digest ) + a_s = ( action_id, forecast_id, policy_id, selected_at ) + r_u = ( resolution_id, forecast_id, event, action_id_or_none, outcome, + resolution_time, witness, qualification, digest ) + s_v = ( score_id, forecast_id, resolution_id, scoring_rule_id, + score, computed_at, digest ) + c_w = ( calibration_id, cohort_rule_id, eligible_score_ids, + statistic, computed_at, digest ) + +_g_t is the exact gate result at time t · f_t is a registered forecast frozen before the event resolves · a_s binds any selected action to the frozen forecast and policy · r_u is the later qualified resolution, where u is not earlier than t · s_v records the score computed from the frozen forecast and linked resolution · c_w records a declared cohort statistic over identified eligible scores · I_t identifies the information available when the forecast was issued · p is a declared probability, not execution authority. The internal belief of a person or model is not directly observable. The auditable object is the registered forecast and its later resolution._ + +The proposed record order is `FREEZE_FORECAST` → `CHOOSE_ACTION` → `APPEND_RESOLUTION` → `SCORE_FORECAST` → `UPDATE_CALIBRATION`. Before a qualified resolution is appended, the forecast remains pending. Pending is not zero, false, success, or failure. A reducer for these proposed records can verify the order, identities, score, and replay without claiming that the forecast was true when issued or that the selected action was wise. PROPOSED + +BP-001 used `HOLD` as a frozen gate value and asked for its execution output, `BLOCK`. This paper maps an `UNRESOLVED` condition to `HOLD` as a post-test vocabulary crosswalk. BP-001 established `HOLD` to `BLOCK` only; it did not test the crosswalk. PROPOSED + +> Figure 1. The proposer sits inside a wider boundary. Only the tinted span is deterministic. The world is reached through a declared instrument and is never read directly. + +### Planes that cannot promote themselves + +**Table 2. Seven planes. Each answers a different question, and none of them establishes the next one on its own.** + +- **External world** - Question it answers What is actually the case?; What it cannot settle alone It may be hidden, and it moves. +- **Observation** - Question it answers What did a declared instrument report?; What it cannot settle alone Whether the report was complete or correct. +- **Proposal** - Question it answers What change was suggested?; What it cannot settle alone Anything. A suggestion carries no authority. +- **Authority** - Question it answers Who permitted which bounded next step?; What it cannot settle alone Whether the step ran, or whether it was wise. +- **Execution** - Question it answers What was attempted, committed, or compensated?; What it cannot settle alone Final world state. An acknowledgement is not an effect. +- **Accepted state** - Question it answers What does the named process now recognize?; What it cannot settle alone That governed state matches the world. +- **Derived memory** - Question it answers What summary is available later?; What it cannot settle alone Evidence. Surviving a restart proves storage, not truth. + +Caches, telemetry, routing models, and interface state are further planes and stay derivative. A fresh telemetry value grants no authority. A cached summary does not become a source by persisting. A predictive model does not become an observation because its average accuracy was good. + +### What the threat model covers +Mistaken, stochastic, and adversarial proposals. Stale, missing, conflicting, and correlated evidence. Scope growth. Partial and duplicate effects. Schema change. Evaluator failure. Replay of an old authorization. Confidential material reaching a public record. Permanent unknowns that starve availability. + +It also covers ordinary operator error, which is the failure I hit most. A system can be secure against an outsider and still fail because a person picked the wrong scope, accepted a misleading threshold, read an acknowledgement as a resolution, or trusted two witnesses that shared one source. + +The trusted computing base is not one object. It is the policy, the schemas, the reducers, the canonicalization rules, the authority registry, the keys, the clocks, the instrument contracts, the evidence stores, and the release process. This implementation does not provide an independently operated root of trust for all of them. OPEN + +## 4. A proposed ten-stage lifecycle + +The candidate lifecycle runs `PROPOSE`, `NORMALIZE`, `CHECK`, `AUTHORIZE`, `PREPARE`, `EXECUTE`, `OBSERVE`, `ACCEPT`, `OUTCOME`, `CORRECT`. It is not a pipeline that succeeds. Every stage can refuse, return unknown, and stop. A failed attempt stays in the history without moving accepted state. This is the conceptual protocol, not the event vocabulary of the current executable packet. PROPOSED + +**The executable slice is narrower** + +The pinned public packet is a proposed Instrumented Transition and Survivability Profile tested over synthetic fixtures. Its event vocabulary is `PLAN` → `AUTHORIZE?` → `INVOKE` → `COMMIT` → `SENSING_EFFECT?` → `OBSERVE` → `SETTLE`. A question mark means the phase is optional only when the pinned instrument profile permits omission. These seven event types exercise a bounded instrument profile. They do not implement the complete ten-stage lifecycle, and `SETTLE` is not silently renamed `ACCEPT`. TESTED + +> Figure 2. Proposed lifecycle. Only a valid acceptance record advances governed state. Refusal and unresolved are recorded at whichever stage produced them, and both are kept. A correction must pass through a new governed transition and cannot bypass acceptance. + +**Propose.** A person, model, or program describes a candidate change, naming +its subject, scope, requested operation, policy generation, and consequence class. +**Normalize.** The candidate becomes one supported schema, and the record keeps +whatever was rejected or lost. Normalization cannot invent a mapping between two vocabularies that merely look alike. **Check.** Required predicates evaluate structure, invariants, evidence, concurrency, budget, and consequence, each returning a typed result and a stable reason. + +**Authorize.** An authority receipt binds an actor to an exact subject, +operation, scope, policy, time window, and replay namespace. A full pass returns permission to prepare and nothing further. **Prepare.** The system builds a bounded effect request. This is the last point where an unsafe action can be stopped without needing to compensate. **Execute.** A tool attempts the effect, and the record separates submission, acknowledgement, partial execution, commit, failure, timeout, and unknown effect. + +**Observe.** A declared witness measures a postcondition, recording procedure, +result type, operating conditions, freshness, and known uncertainty. **Accept.** A named authority advances the projection only when the required predicates and receipts satisfy policy. Acceptance is never inferred from a tool's success code. +**Outcome.** A later observation records consequence, which can arrive long after +acceptance. **Correct.** A correction opens a new governed transition that names the prior record and states the proposed replacement and reason. It never edits the record it corrects. The replacement changes accepted state only after a new acceptance record satisfies the current policy. `CORRECT` cannot bypass `ACCEPT`. PROPOSED + +### How required checks aggregate + + FAIL if any required predicate is decisively false + UNRESOLVED else if any required predicate is UNKNOWN, STALE, or ERROR + PASS only when every required predicate passes + +_The transition gate maps condition FAIL to REFUSE, carries UNRESOLVED through unchanged, and otherwise returns PASS. An empty required set returns UNRESOLVED with reason INVALID_POLICY, never a vacuous pass. Policy may be stricter. Policy may not map an unresolved required predicate to pass. PROPOSED_ + +The public instrument and concurrency reducers test narrower, reason-specific `PASS`, `FAIL`, and `UNKNOWN` outputs, including local `NOT_REQUIRED` obligation positions. They do not expose this general set aggregator, a mixed false-plus-unknown precedence fixture, or the empty-set `INVALID_POLICY` rule. The general normalization above is therefore a design target, not a reported test result. TESTED + +The rule says nothing about completeness. A system can pass every declared check while omitting the one that mattered. That is a limit of the predicate set, not of the aggregation, and no aggregation rule can repair it. + +### A short trace +A configuration change is proposed. The schema check passes. The current dependency version cannot be observed, so the compatibility check returns unknown. A valid authority receipt permits preparation only. The tool accepts the request, and the postcondition instrument returns a real domain null while settlement stays unresolved. + +The projection does not advance. The history keeps the proposal, the check results, the preparation authority, the acknowledgement, the domain null, and the unresolved settlement. Later a qualified observation identifies the version and confirms the postcondition, and a new acceptance record advances the projection. The earlier unknown stays in the history. It is not overwritten, because it was true when it was recorded. + +## 5. Measurement before acceptance + +A consequential system has to separate what happened from what was recorded about what happened. A tool can return success while producing an unexpected effect. A sensor can return a valid null. A result can be missing because nothing was sampled, because it fell below a detection limit, or because a stated rule censored it. Those support different decisions. Storing each as an empty field destroys the information the next check needs. + +An observation is therefore a tagged record, never a bare value. + + DOMAIN_VALUE(value, unit_or_schema, uncertainty) + DOMAIN_NULL(reason) + BELOW_LIMIT(limit, procedure) + NO_CHANGE(quantity, delta_hat, u_delta, epsilon, rule, interval, procedure, conditions) + ABSENT(reason) + CENSORED(rule, bound) + INTERCURRENT(event, strategy) + +_DOMAIN_NULL is a meaningful null the domain supplies, not a missing field. BELOW_LIMIT records that a procedure could not quantify below a stated limit, and does not assert zero. NO_CHANGE is a positive measurement claim and is never inferred from an empty event stream. It records an observed change estimate, an uncertainty statement, a tolerance, and a pinned decision rule. ABSENT records that the required observation was not obtained._ + +For a scalar quantity, one conservative decision rule could require `|delta_hat| + k u_delta ≤ epsilon`, with `k`, the meaning of `u_delta`, the interval, and the procedure fixed before evaluation. That rule is an example, not a universal definition. If the required uncertainty or operating conditions are missing, the evaluator returns `UNKNOWN` rather than `NO_CHANGE`. The full tuple above is a design proposal. PROPOSED + +The public instrument profile tests the narrower label `NO_CHANGE_DETECTED` bound to a declared resolution and observation window; it does not implement the full uncertainty-aware tuple. TESTED + +Condition evaluation is a separate type, and keeping both is the point. + + PASS | FAIL | UNKNOWN | STALE | ERROR | NOT_APPLICABLE + +_Applicability is settled first. NOT_APPLICABLE leaves the required set and every metric denominator. An absent record maps to UNKNOWN, a known expired record to STALE, and an evaluator crash to ERROR. An evaluator failure is not an observation of the world and cannot become one._ + +Clinical trial guidance keeps a related discipline. ICH E9(R1) ties each objective to a defined estimand and separates intercurrent events from missing data [12]. A participant's death can make a later value nonexistent rather than missing. Administrative censoring limits follow-up. A sample may never have been collected. I borrowed the record-keeping discipline. The protocol supplies no estimand, no imputation rule, and no sensitivity analysis, and adopting the vocabulary does not import the statistics. + +An observation feeding a consequential predicate should identify its subject, the quantity evaluated, the instrument and version, the procedure, the time or interval, the operating conditions, the result type, the uncertainty, the freshness rule, and the source artifact. Where sensing changes the subject, the sensing action gets its own effect record. Reading a database consumes capacity. A medical test may require an invasive sample. A probe alters a cache. Observation and sensing effect answer different questions and are recorded separately. + +### Forecasts are records about later events +A forecast is evaluated only after its declared event has a qualified resolution. For a binary event with outcome `y` and forecast `p`, the Brier score is a proper scoring rule [39, 40]. If the forecaster's information implies a true conditional event probability `q`, its expected value separates into a reducible error term and irreducible event variance. + + BS(p, y) = (p - y)^2 + E_q[BS(p,Y)] = (p - q)^2 + q(1 - q) + + F_mu(p) = E_q[BS(p,Y)] + mu p + arg min F_mu = clip( q - mu/2, 0, 1 ) + +_The last two lines are a diagnostic counterexample, not a recommended objective. With q = 1/2 and mu = 1/2, the uncoupled Brier objective selects p = 1/2, while the coupled objective selects p = 1/4. Rewarding the same optimizer for a lower reported risk changes the report rather than the event probability._ + +The architectural consequence is to estimate, freeze, and later score the forecast as one lane, then select an action under a separately declared policy. If the action can change the event distribution, the record must identify that action and either forecast `Pr(Y | I_t, action)` or preserve a clearly labeled pre-action scenario. Otherwise the intervention can be mistaken for forecast error. This is related to the feedback problem studied as performative prediction [42]. PROPOSED + +### Three meanings of calibration that must remain separate +Forecast calibration is a property of a cohort of comparable, frozen forecasts: among cases issued near probability `r`, the observed event frequency should approach `r` under the declared grouping and resolution rules [40, 41]. One resolved forecast has a score. It cannot establish calibration. Model agreement is recurrence, not calibration, and an unresolved forecast is not part of a resolved calibration denominator. + +Metrology defines metrological traceability as a property of a measurement result that relates it to a reference through a documented unbroken calibration chain, with every link contributing uncertainty [8]. The same source warns that traceability does not show the uncertainty is fit for a purpose and does not prove the absence of mistakes. + +A green indicator is not that. A high pass fraction is not that. Two programs agreeing is not that. Conformity assessment adds a second distinction: a measurement result is not an accept-or-reject decision, and the gap between them is governed by stated requirements, uncertainty, acceptance limits, and the tolerated risk of accepting a nonconforming item [9]. + +So this paper uses **protocol-calibrated predicate** for the project's strict software condition. It is computable from declared inputs. It implies no SI traceability, no calibration hierarchy, and no probability that a system is healthy. The bridge to metrology is procedural. The protocol can carry measurement identity, uncertainty, conditions, and decision rules without collapsing them. It does not compute an uncertainty budget, qualify a laboratory, or establish forecast calibration. PROPOSED + +## 6. Cross-language replay parity + +The National Academies separates computational reproducibility, replication, and generalization [10]. Reproducibility asks whether the same data, code, and conditions give consistent results. Replication uses newly obtained data. The reducer evidence here is reproducibility, and only that. + + C( R_js(P, L) ) = C( R_py(P, L) ) + + both roots = 22852b5a3025d4ed7ee1d26cc4efcd51ae2e3e02ba2a20332c2a09827d6462ca + +_C serializes nulls, booleans, finite numbers, and strings, preserves array order, sorts object keys recursively, and emits no insignificant whitespace. This is not RFC 8785 canonicalization and makes no claim about Unicode keys outside the pinned corpus, whose keys are ASCII. TESTED_ + +The JavaScript and Python reducers are ports derived from the same specification and fixture corpus. Their agreement can catch language-specific, transcription, and runtime defects. It is not clean-room independence and it is weaker than replication, because both ports can share a specification error, the same fixtures, and the same assumptions. It says nothing about whether a recorded event was true. + +One result strengthens it slightly. Continuous integration pins Node 22.17.1 and Python 3.12.10. I reran both reducers on Node 24.18.0 and Python 3.14.6, two release lines later, and got the identical projection root with all checks holding. That is evidence the parity is not an artifact of one pinned runtime. TESTED + +**Table 3. The validation ladder. Current artifacts reach level three for selected finite cases. Levels four through six are open.** + +- **1** - Level Records satisfy a declared structural schema; Status here TESTED +- **2** - Level One implementation repeats its own result; Status here TESTED +- **3** - Level Cross-language ports agree on pinned inputs; Status here TESTED +- **4** - Level Another team reproduces from a minimized packet; Status here OPEN +- **5** - Level A new study obtains fresh evidence for the question; Status here OPEN +- **6** - Level The result stays informative in another system; Status here OPEN + +### Ordering is not causation +Sequence numbers, previous digests, and parent references show that named bytes were linked and that one computation consumed another record. Lamport's happened-before relation supports partial order without treating wall-clock time as a complete order [2]. That supports replay, conflict detection, and audit. + +It does not establish a causal effect. If a change ships and the error rate later falls, the history shows the deployment preceded the measurement. The fall could be a traffic shift, a cache change, a provider action, a changed measurement procedure, or something else entirely. The same trace fits several causes. Causal inference starts from a defined effect and the conditions under which it is identified [13], and a trustworthy event history supplies none of them. + +### The integrity ladder +Six claims usually get compressed into the single word verified. They are separate, and no lower step establishes a higher one. + +- A hash link can expose a byte change relative to a trusted commitment that covers the linked event. +- A signature shows a key signed declared bytes. +- An authority policy decides whether that key and scope are acceptable. +- A measurement profile decides whether an observation fits the predicate. +- An acceptance record advances governed state. +- A later outcome record describes consequence. + +A privileged custodian can replace an entire unanchored history and recompute every hash. A chain therefore supports consistency checks against a trusted anchor; it does not make storage immutable or prove that additions were the only changes. Resisting replacement needs external checkpoints, signatures, access control, or independent witnesses. The repository's additions-only check states this ceiling in its output rather than implying otherwise: it reports that Git branch protection and an external witness are required to resist history replacement. TESTED + +### The chain construction +A portable chain profile needs an unambiguous encoding and a domain separator, so that a digest computed for one purpose is not accepted in another domain. The construction below is proposed. The public instrument packet instead uses a fixture-scoped digest chain and does not implement this full portable profile. + + b(k) = Canon( event(k) without event_hash ) + h(k) = H( D || len(b(k)) || b(k) || h(k-1) ) + + D = "STP_EVENTCHAIN_SHA256_V1.2_JAKETOPENSOURCE_DELTAATLAS_2026" + +_D is this protocol's domain separation tag. Its value is arbitrary by construction, in the sense that any distinct constant separates domains equally well, and it is fixed here so that two implementations agree. The profile must also pin the length encoding, duplicate-key handling, number and Unicode rendering, media type, schema version, and the initial value h(-1). The current implementation uses local canonicalizers and does not claim RFC 8785 conformance. PROPOSED_ + +### Claim-relative evidence surfaces, and the surface this work has not tested + +Every automated check reported in section 9 is software checking software. That bounds what those checks can establish. Independence is not a global property of a tool or a count of verifiers. It is relative to a claim and a candidate failure mode. A shared parser weakens separation for parser failures; a shared specification weakens separation for specification failures; a shared operator weakens separation for provenance and execution failures. Those dependencies do not make every observation equivalent for every question. They identify the failure modes that can corrupt the observations together. + +**Table 4. Claim-relative evidence surfaces. Shared dependencies reduce separation for the named failure modes; no row is a universal rank.** + +- **Artifact-internal structure** - Claim it can test One artifact satisfies its declared shape and consistency rules; Shared dependency that limits it A coherent false record or a faulty rule can pass; Status here TESTED +- **Cross-implementation replay** - Claim it can test Separate implementations produce the same projection from the same bytes; Shared dependency that limits it A shared specification, fixture, or source record can be wrong in common; Status here TESTED +- **Physical observation** - Claim it can test A declared physical quantity covaries with a declared execution condition; Shared dependency that limits it Instrument, driver, clock, host, custody, calibration, and inference model; Status here OPEN + +The cross-language replay result supports agreement between two execution paths and can expose language-specific, transcription, or runtime defects. It cannot detect a specification or fixture error reproduced by both paths. Adding another port changes the evidence only if it removes a dependency relevant to the failure mode under examination. + +Power draw, timing, and electromagnetic emission are established side channels, studied since differential power analysis [36]. A monitor on a machine's power rail can add separation for some claims about physical execution because it does not depend on the same process-table report. It does not thereby establish that the software result was correct, authorized, or caused by the reported operation. + +I built a bounded loop between an agent harness and an Nvidia GPU that sampled power draw during agent runs. **No result from it is part of this paper's evidence.** Several readings shared a sensor, driver, clock, host, and operator. For failure modes at or upstream of that measurement chain, they are repeated observations with common dependencies, not independent confirmation. They may still describe variation across runs, but that is a different claim. + +A physical trace is not unforgeable, and the countermeasure literature on masking, hiding, and noise injection exists precisely because traces can be shaped. A sensor reading is not self-authenticating, since custody, calibration, and the path from probe to record are attackable. A correlation between load and an assertion about behavior is not a mechanism. Supporting a narrow physical predicate would require a declared measurand, calibration reference, operating limits, uncertainty budget, known sensing footprint, and a pre-registered discrimination task with false-accept and false-reject rates. Those conditions have not been met here. OPEN + +### Additions-only is a protocol rule, not a storage guarantee +The rule governs how accepted protocol events are handled: a correction adds a new record and does not edit the record it corrects. A hash chain can expose divergence from an anchored prefix, but it cannot prevent a privileged rewrite of an unanchored history. The rule also does not authorize indefinite retention of raw evidence or personal data. Data minimization, storage limitation, correction, and erasure all conflict with a naive permanent log [14]. Three stores keep those obligations separable. + +> Figure 3. An erasure record can persist in the event history after the restricted object is destroyed. Hashing a personal record does not anonymize it, and a deletion receipt does not establish legal compliance. + +## 7. Evidence state, reported as a vector + +For one subject, one policy generation, and one evaluation cut, let `J` be the finite nonempty set of required applicable checks. Every check maps exactly once into pass, fail, unknown, stale, or evaluator error. Not-applicable checks are excluded from `J` and from every denominator. + + N_app = P + F + U + S + E applicable + N_dec = P + F decisive + + C = N_dec / N_app decisive evidence coverage + Q = P / N_dec decisive conformance + R = 1 - (S / N_app) non-stale-label fraction + +_A zero denominator returns UNDEFINED, never zero. Policy must map raw observations such as ABSENT and CENSORED into the condition partition before C and Q are computed._ + +Pass and fail contribute equally to **C**. One failed check out of one applicable check gives `C = 1` and `Q = 0`, which is complete decisive coverage of a failed result. If that check is policy-blocking, the interface shows red. The coverage arithmetic alone does not, and should not. + +**R** is the non-stale-label fraction: the share of applicable conditions not +labeled stale. An unknown condition counts as non-stale while staying non-decisive, so **R** is not a measure of fresh evidence about the world. A stronger receipt-coverage measure would need deterministic receipt selection bound to subject, check, generation, and evaluation cut, with ties on sequence returning a typed conflict rather than a choice. The current schema does not carry those bindings, so I make no fixture claim for it. PROPOSED + +**C** is deterministic and verdict-symmetric. **Q** is deliberately +verdict-sensitive. The system as a whole is not policy-neutral, because policy chooses the applicable checks, the thresholds, the freshness windows, and the evidence requirements. For that reason **C** is never called a probability of truth, correctness, or safety. + +### Probability does not select policy +The gate, forecast, and action policy answer different questions. The gate asks whether an action is admissible. The forecast describes uncertainty over declared events. The policy decides how to compare safety, heat, latency, opportunity, and other consequence dimensions. Those dimensions remain a vector unless an authorized policy supplies a scalarization or another selection rule. + + J_j(a | x, B_(x,a)) = sup sum q(e) L_j(a, e; x) + q in B_(x,a) e in E_x + + a dominates b iff J_j(a) ≤ J_j(b) for every j, + and J_j(a) An infinite representation space does not imply infinitely many behavioral +answers. Many encodings can implement the same policy or forecast function. A unique optimizer may also exist on an infinite domain. Where several admissible actions remain incomparable and no authorized preference rule exists, the honest output is the frontier and an unresolved selection, not a hidden default. PROPOSED + +### A proposed drift vector +The following design records drift as eight components whose units remain separate. No committed reducer computes the complete vector, so the table is a specification target rather than a reported implementation result. PROPOSED + +**Table 5. Proposed drift components. Missing evidence is not zero drift.** + +- **D_sem** - Definition unresolved or contested required semantics, over required semantics; Range 0 to 1 +- **D_replay** - Definition count of distinct valid reducer projections, minus one; Range integer ≥ 0 +- **D_sched** - Definition distinct projection and effect-trace classes over permitted schedules, minus one; Range integer ≥ 0 +- **D_inv** - Definition accepted prefixes that violate an invariant; Range count +- **D_effect** - Definition unknown effects, duplicate risks, unresolved observation conflicts; Range count +- **D_capacity** - Definition per-lane overflow, retaining each lane's unit; Range vector +- **D_fresh** - Definition required stale receipts, over required applicable receipts; Range 0 to 1 +- **D_policy** - Definition unknown or mismatched policy-generation bindings; Range count + +D_replay and D_sched are defined only after completeness checks. A missing or invalid required output makes the component UNDEFINED and the aggregate UNKNOWN. Invalid outputs are never discarded to reach a cleaner number. Capacity is never summed across incompatible units, because observation, settlement, and recovery lanes measure different things. + +`DRIFT_DETECTED` requires a decisive component that the pinned policy marks blocking. `DRIFT_NOT_DETECTED` means no declared test detected drift. It does not mean drift is absent, and the two readings are not interchangeable. PROPOSED + +### Six signals +> Figure 4. Proposed six-condition surface. The conditions stay separate so that a strong dimension cannot conceal a failing one. Every color carries a text label and a reason code. + +The order is normative, not cosmetic. Conditions are reported as protocol calibration, consequence, evidence, integrity, privacy, activity, and a conforming surface renders them in that sequence so that two deployments can be read against each other without remapping. Any total order would serve equally well. This one is fixed so that the choice is not left to each renderer. PROPOSED + +The display labels are shorthand for directional policy predicates. A conforming record names the predicate so that `PASS` always has a stable meaning: + +- `PROTOCOL_CHECKS_SATISFIED`: all required applicable checks pass and +none is unresolved; an empty required set is `UNKNOWN / INVALID_POLICY`. +- `NO_BLOCKING_CONSEQUENCE`: complete required consequence checks find +no active blocking consequence; an active one is `FAIL`, and incomplete checks are `UNKNOWN`. +- `EVIDENCE_SUFFICIENT`: a pinned policy maps coverage, conformance, and +receipt requirements to a condition result. A high value of **C** does not pass this predicate by itself. +- `REQUIRED_COMMITMENTS_MATCH`: every required named artifact matches +its trusted commitment; a missing commitment is `UNKNOWN`, not `PASS`. +- `DISCLOSURE_BOUNDARY_HELD`: every required observed disclosure path +stays within the declared boundary; an unobserved required path remains `UNKNOWN`. +- `ACTIVITY_EXPECTATION_MET`: activity falls within the policy's stated +window and expectation. More activity is not inherently better. + +Each predicate returns `PASS`, `FAIL`, `UNKNOWN`, `STALE`, `ERROR`, or `NOT_APPLICABLE` under a pinned policy. The public case study renders partial lamps, but it does not implement this general six-predicate decision contract. PROPOSED + +On the consequence signal, red means `NO_BLOCKING_CONSEQUENCE = FAIL`: a named blocking consequence is active under the pinned policy. It can request acknowledgement before another scoped action begins. Acknowledgement does not make the condition safe, and some red conditions are non-waivable and require refusal. The public educational interface does not claim to control a host chat or an external tool. Without a durable, enforceable gate the indicator is informational, and I say so rather than implying enforcement. + +The record separates `NOTIFIED`, `PRESENTED`, `ACKNOWLEDGED`, `AUTHORIZED`, `OVERRIDDEN`, `INTERVENED`, and `RESOLVED`. Understanding is never inferred from a click. Intervention does not prove an adverse effect was prevented. Resolution requires its own observation. + +## 8. Methods and artifact scope + +### 8.1 Evidence units and pinned sources + +This paper is a bounded artifact audit and a single-project case study. The primary implementation evidence is pinned to commit `275d0b3e7474ef58456c82a042163567cd12122f` of the public Resilience Ledger repository. I reran its public gate on Node 24.18.0 and Python 3.14.6. Continuous integration declares Node 22.17.1 and Python 3.12.10. The same recorded projection root was produced by separate JavaScript and Python implementations derived from one specification and fixture corpus. This is cross-language replay parity, not clean-room or external replication. + +The protocol suites use finite event files, policies, fixtures, and rejection mutations as their units. Their results are exact only for those bytes and that code. Deployment observations use paths or routes sampled at named times. Interface checks establish source or rendering structure and make no claim about reader comprehension. These evidence families are reported separately because their denominators are not interchangeable. + +The Typed Refusal reanalysis uses a hand-decomposed claim as its unit. Its archive reports twelve frozen questions and three runs per P0 through P4 arm, plus a separate larger-model control, but publishes only pooled arm totals. The exact model version, generating prompts, answers, run-level data, question-level data, corpus bytes, and preregistration record are absent. Wilson intervals and Fisher exact tests were recomputed from `data/arms.json` by `data/stats.py`; they are exploratory claim-level summaries under a working independence assumption. The claims are clustered within questions and runs, so those intervals and p values do not establish arm-level precision or significance. + +The 2026-07-17 replication declares 36 sessions, of which 30 were scored after six final-block sessions were truncated. Its registration record and decision logs are public at commit `77408db59cad3f968ac9ba5a0c0c6689a90e80d4` of `JakeTOpenSource/the-stable`, and its recorded cells were replayed offline. The inspected public history does not independently establish that the registration file predates data collection, so I treat it as a committed registration record rather than verified prospective registration. The Typed Refusal aggregates are pinned separately at commit `721a824c9f735d3972d720b41685469a1020fa91` of `JakeTOpenSource/typed-refusal-harness`. No external evaluator selected, ran, or scored these experiments, and no qualified instrument or live consequential adapter was evaluated. + +### 8.2 Finite activation, quotient, and frozen-oracle packets + +Three local owner-review packets test the newer mathematical layer. The Generic Device Activation Fixture enumerates 151 synthetic trace prefixes of length at most ten. It evaluates seven declared queries against ten candidate representation fields, exhaustively checks all 1,023 nonempty candidate subsets, and retains a collision witness whenever a representation merges records whose query answers differ. Separate Python and JavaScript generators produce the same frozen dataset; the exhaustive subset analysis is then performed in Python. The result is exact only for those traces, queries, fields, and transition rules. + +The transition-stable quotient packet uses the same 151 records and ten declared events. Each state-event pair is either enabled, advancing to its child trace, or refused, remaining at the current trace. This gives 1,510 finite transitions. A partition begins from a declared query signature and repeatedly splits any class whose members differ in event status or successor class. Separate Python and JavaScript analyzers produce byte-identical canonical reports. This is a finite application of established sequential-machine refinement [43-45], not a new minimization theorem. + +The frozen-oracle packet fixed one prompt, one response schema, a nine-group oracle, and a twelve-function semantic rubric before three responses were requested. The responses were requested under `gpt-5.6-sol/high`, `gpt-5.6-sol/low`, and `gpt-5.6-terra/high` configurations. Those labels are request metadata because the retained responses contain no runtime model attestation, model-build digest, seed, or sampling parameters. Responders saw the prompt and schema, not the oracle or rubric. The name means only that the oracle and rubric were fixed before collection and withheld from responders; no blinded assignment or blinded assessment occurred. Exact fields were compared with the oracle. Semantic recurrence was mapped separately and required a verbatim quote from the corresponding response. That map remains `DRAFT_OWNER_REVIEW`. + +The packets share a recorded operator, orchestration platform, prompt, and response schema. Their requested model labels are metadata; common model ancestry is plausible but not established. Agreement is therefore bounded prompt-oracle agreement, not independent validation. The expected activation analysis, quotient report, and BP-001 evaluator report are pinned locally by digests `7c550d125d38`, `1b0e78adcac7`, and `de2c28735762`. Appendix C gives the full values and either public packet locators or retained source IDs. TESTED + +### 8.3 Related work boundary + +The design joins established lines of work rather than treating their components as new. Causal ordering and state-machine replication [2, 6], event sourcing and transaction or compensation boundaries [3-5], runtime assurance [7], metrology and conformity assessment [8, 9, 11], and reproducibility, estimands, and causal inference [10, 12, 13] provide the main technical background. Canonicalization, transparent logs, provenance, and software supply-chain records inform the evidence identity boundary [15-20]. Accessibility, assurance-case, status-condition, and interchange specifications inform the reporting surface [18, 27, 31-34]. + +Proper scoring and empirical forecast calibration supply the probabilistic lane [39-41]. Performative prediction supplies the warning that a decision can change the distribution it is later scored against [42]. Sequential-machine equivalence and partition refinement supply the finite transition-stable construction [43-45]. Convex and vector optimization supply the distinction between a Pareto frontier and a policy-selected point [46]. Robust convex optimization supplies the worst-case-over-a-declared-uncertainty-set pattern [48]. Mathlib's pinned `Function.FactorsThrough` definition supplies the formal vocabulary for query-relative sufficiency [47]. These are established sources used to express the proposal; none validates the case study. + +Two systems published in 2026 share this design's spine and are named directly. ESAA has agents emit structured intentions that a deterministic orchestrator validates and persists to an append-only log, separating agent cognition from state mutation through constrained outputs and replay-based verification [49]. AgentBound evaluates each proposed action using three independent authorities and emits cryptographically verifiable governance receipts binding an action to the exact delegation and policy artifacts that governed it, supporting independent replay [50]. Append-only event history, deterministic replay, receipt-bound policy identity, and refusing to let a model mutate state directly are established work, not contributed here. + +The Leiden Declaration states the corresponding obligation from the research side [51]. Published in June 2026 and endorsed by the International Mathematical Union, it requires transparent disclosure of automated tools in a stated section of a paper, and it holds that the responsibility for correctness, for the adequacy of the arguments, and for the completeness and accuracy of citations remains exclusively with the human authors. Credit and responsibility belong to people rather than to automated systems. The declaration states values and principles rather than formats, and it specifies no artifact for discharging those duties beyond a disclosure section and existing peer review. No conformance with the declaration is claimed here, and the declaration does not endorse this work. + +Two narrower separations remain. First, UNRESOLVED is a condition about evidence, not a verdict about an action. AgentBound composes three authorities into the lattice Deny < Review < Permit, where Review is a deferred authorization carrying a dischargeable obligation, and satisfying human approval converts it to execution [50]. ESAA is binary, emitting `output.rejected` on contract violation [49]. Neither carries a state for a required check that is missing, stale, or errored. This design does. UNRESOLVED records that the evidence was not obtained, it is not discharged by an approver, and the aggregation rule in section 4 forbids any policy from mapping it to a pass. An empty required set returns UNRESOLVED with reason `INVALID_POLICY` rather than a vacuous pass. Second, observation and acknowledgement are separate planes from acceptance. Both cited systems gate before execution and treat the applied effect as the record. This design records submission, acknowledgement, partial execution, commit, failure, timeout, and unknown effect as distinct outcomes, and requires a declared instrument's qualified observation before a named authority may advance accepted state. A tool's success code is not an observation, and an observation is not an acceptance. The record types proposed in sections 4 and 7 are one candidate discharge mechanism for the disclosure and correctness duties named by the Leiden Declaration [51]. These comparisons rest on the arXiv HTML renders of both papers, not on their PDFs or any implementation, and no systematic review was completed. This paragraph positions the work and makes no priority claim. OPEN + +Privacy, security, financial, medical-device, and AI-governance sources are used as domain constraints or comparison points [14, 21-26, 28-30]. They do not establish compliance. The transformer, biological-mechanics, and side-channel sources supply limited architecture or measurement context [1, 35, 36], not validation of this protocol. + +Hamilton-Zero makes one scientific boundary concrete. Its architecture analytically preserves a variational upper bound, while the authors warn that a finite-sample Monte Carlo estimate can appear below the true ground-state energy because of estimator noise or mixing bias [38]. A guarantee on the represented state therefore does not automatically attach to the sampled estimate or the published comparison. This is a domain example, not validation of this protocol. + +With his permission, Jake Macdonald's OpenGoldenRatio (OGR) v0.1 is cited as parallel related work [37]. After reviewing this draft, Macdonald helped sharpen the comparison: STP follows governed transformation from candidate output toward accepted state, while OGR centers containment and governed relations among actors or agents. His contribution here was review and clarification of that comparison. He did not contribute code, data, experiments, or authorship, and OGR is not evidence that STP works. + +## 9. Results + +Five result families are kept apart because their denominators and their meaning differ. Protocol conformance yields exact finite outputs. Agent behavior yields bounded empirical observations. Interface work yields structural conformance and no comprehension claim. Live operations yield bounded observations at named times. Finite mathematical packets yield exact local results over declared traces, query sets, candidate fields, transition semantics, and prompt-oracle comparisons. + +### 9.1 The gate + +One command runs the public suite. It executes sixteen scripts and prints thirty-four numbered holds across twelve named suites, with every denominator equal to its numerator. + +**Table 6. Public gate composition at commit 275d0b3e7474, from node governance/harnesses/run-all.js.** + +- **Ledger falsification** - Holds 10; What the strongest hold in it establishes Ten mutations of the event history are rejected +- **Governance chain** - Holds 5; What the strongest hold in it establishes 16 event files, 6 stream chains, 12 checkpoints bind +- **Authority falsification** - Holds 4; What the strongest hold in it establishes Four forged authority paths are rejected +- **Cross-language replay parity** - Holds 3; What the strongest hold in it establishes JavaScript and Python implementations derived from one specification and fixture corpus produce the same root +- **Append-only history** - Holds 2; What the strongest hold in it establishes Git comparison permits additions only +- **Privacy boundary** - Holds 2; What the strongest hold in it establishes 85 records scanned, 3 synthetic leak canaries caught +- **Atlas data sync** - Holds 2; What the strongest hold in it establishes Six projections match baseline, 4 mutations rejected +- **Six-signal public surface** - Holds 2; What the strongest hold in it establishes Six conditions render with non-color cues +- **Schema contract** - Holds 1; What the strongest hold in it establishes Schemas, validators, and envelopes agree +- **Atlas data materialization** - Holds 1; What the strongest hold in it establishes Three profiles replay, three malformed inputs rejected +- **Atlas foundational repair** - Holds 1; What the strongest hold in it establishes The repaired foundation still holds +- **Authority** - Holds 1; What the strongest hold in it establishes The authority profile evaluates its seven conditions +- **Twelve suites** - Holds 34; What the strongest hold in it establishes All holding at this commit + +Four of the sixteen scripts print a named pass with no numbered hold: the replay driver, the runtime check, the home surface check, and the public explanation check. Their results are therefore omitted from the total of 34. That total is a runner-reported diagnostic inventory, not a coverage measure or a count of everything checked. TESTED + +### 9.2 One source, six incompatible views + +The candidate source holds 439 terms and labels every one of them reviewed. Six public projections were measured against it. The count drift was the least of it. + +**Table 7. Projection drift against the 439-term candidate source. Identical counts shared records matching on every field. Status differs counts shared records whose review status disagrees.** + +- **ask-inline-data** - Terms 435; Shared 435; Identical 0; Absent 4; Extra 0; Status differs 258 +- **ground-truth-inline-data** - Terms 435; Shared 435; Identical 0; Absent 4; Extra 0; Status differs 258 +- **explore-inline-data** - Terms 435; Shared 435; Identical 125; Absent 4; Extra 0; Status differs 258 +- **gap-check-inline-data** - Terms 433; Shared 433; Identical 0; Absent 6; Extra 0; Status differs 256 +- **canon-json-projection** - Terms 214; Shared 204; Identical 0; Absent 235; Extra 10; Status differs 26 +- **canon-markdown** - Terms text document: pins a canonical text digest only, with no per-term comparison + +Three findings matter more than the counts. First, the source calls all 439 terms reviewed while three projections report 258 candidate and 177 reviewed, so the authoritative label was contradicted by every consumer. Second, in four of the five comparable projections not one shared record matched on every field. Third, the canon projection contains ten identifiers with no counterpart in the source at all, which is divergent provenance rather than staleness. + +The repair did not declare one file true. It registered a candidate source, measured every projection against it, stored the mismatch sets by digest, and added mutation tests. Historical regeneration stayed impossible for some consumers because their selection rules were never recorded. The 439-term source remains a candidate inventory, and no check here validates a single definition. TESTED + +### 9.3 Source, deployment, and live bytes + +The project once shipped by manual upload, which left the relation between repository and production unclear. The first recorded reconciliation compared every deployable path. + +**Table 8. Production observation 34bde4ec2eb4, recorded 2026-08-11.** + +- **Deployable paths checked** - Value 102; Reading the declared set +- **Returned HTTP 200** - Value 102; Reading all reachable +- **Missing** - Value 0 +- **Semantic matches** - Value 100 +- **Semantic mismatches** - Value 2; Reading index.html and sw.js +- **Line-ending-only differences** - Value 1; Reading CITATION.cff + +The two mismatches were left unresolved rather than rounded away. Production served a homepage without the deferral script the repository carried, and a service worker naming cache `aaig-v84` where the repository named `aaig-v85`. The receipt also records that the reported source commit was an empty string, and that the deployment completed roughly ten minutes before the then-current main commit existed, so that commit could not have been its source. The event decision was `DEFER`. OBSERVED + +A later Git-connected deployment linked provider record to merged source with an exact commit relationship, and sampled two live routes. Both returned 200. Both differed from committed bytes by exactly one declared 214-byte analytics insertion with zero source bytes removed, which is why raw byte identity is recorded as mismatched and the transform relationship as matched. Both routes recorded no content security policy header. That receipt explicitly declines to establish global edge convergence, installed cache state, accessibility, privacy, security, semantic truth, durability, or any future state. OBSERVED + +The service-worker drift from the first receipt stayed open for two cache generations. A third receipt now closes it: production served bytes identical to the committed file, with both naming cache `aaig-v87`. Closing it required publishing a checkpoint, and the projection root was unchanged at `22852b5a3025`, because an observation with no effect must not advance accepted state. OBSERVED + +The closure is bounded and the receipt says so. It records that the `aaig-v85` and `aaig-v86` generations were never observed in production and cannot be reconstructed, that one edge was sampled, and that installed client caches were not inspected. The process failure is the part worth keeping: an unresolved finding aged out of view for two versions because nothing scheduled its re-observation. The protocol recorded the gap faithfully and did not close it for me. OPEN + +### 9.4 Finite representations and frozen-oracle results + +**Table 9. One layer in plain language, formal language, finite result, and claim ceiling. Every result is local to the retained owner-review packet.** + +- **A forecast is not permission.** - Formal object execute = 1 only if g = PASS, for every +p.; Finite result All three BP-001 responses returned BLOCK when the gate was held.; Claim ceiling Exact prompt-oracle agreement, not operational enforcement. +- **In the frozen objective, coupling the report to its reward moves the optimum.** - Formal object argmin E[(p-Y)^2] = 1/2; adding (1/2)p gives +p* = 1/4.; Finite result All three responses recovered both frozen values.; Claim ceiling A synthetic algebraic counterexample, not real-world calibration. +- **Current state is sufficient only for named questions.** - Formal object r(x)=r(y) implies sigma_Q(x)=sigma_Q(y).; Finite result Across 151 traces and seven queries, all 1,023 nonempty subsets of ten fields +were checked. One five-field set was sufficient. It realized 47 tuples for 33 query classes.; Claim ceiling Set-minimal within ten supplied fields, not globally minimal. The 47 tuples overrefine the exact 33-class query quotient. +- **A useful summary must also survive permitted next steps.** - Formal object x equiv_Q y only when every permitted continuation preserves equal +query answers.; Finite result The full seven-query partition stayed 33 to 33. Removing nextPermittedActions began at 18 classes and refined to the same 33-class partition in one round.; Claim ceiling Exact for one finite graph, ten events, and declared refusal semantics. +- **Several actions can remain equally admissible without being equal.** - Formal object Keep every nondominated risk vector until policy supplies a preference rule.; Finite result All three responses retained A, B, C as Pareto-minimal and refused +to invent a unique action.; Claim ceiling Agreement on the frozen example, not a universal risk policy. + +The BP-001 evaluator made 27 exact comparisons: nine frozen result groups across three requested configurations. All 27 matched the oracle, all three response shapes passed, and the exact answer vectors matched pairwise. The exact layer includes the gate, the two forecast optima, historical insufficiency, the Pareto set, absence of a unique action, the unresolved pending state, the encoding distinction, and the five-step record order. TESTED + +The semantic layer is deliberately weaker. Its quote links pass deterministic existence checks, but the function-to-quote judgment remains `DRAFT_OWNER_REVIEW`. Six functions have unambiguous unanimous quote support: gate and forecast separation, freezing before resolution, append-only resolution, cohort calibration, typed unresolved state, and preservation of a Pareto frontier without hidden scalarization. The owner-review map also marks forecast scoring, F04, present in all three responses. One mapped quote says to score the frozen forecast after resolution without naming a declared scoring rule, so strict F04 unanimity remains unresolved and is not promoted to the six-function count. F04 still has direct scoring-rule support in two responses. Query-relative projection and behavioral quotienting also recurred in two of three responses, so functions F01 through F09 each have quote support in at least two. Deterministic replay audit, explicit separation of belief scoring from action optimization, and the general claim ceiling, F10 through F12, were absent from all three. Agreement is therefore signal about recoverable output structure, not evidence that the responses supplied the complete architecture. OPEN + +The model labels are retained exactly as requested but not promoted to runtime identity. The runs share material common causes, including the prompt, schema, orchestration platform, and possible training or system dependencies. No result in this subsection is described as independent replication, human understanding, truth, novelty, safety, or forecast calibration. + +## 10. The results that went against me + +These are the most informative findings in the project. Each one narrowed a claim I had already made. + +### 10.1 A receipt that contradicts itself + +The first deployment receipt reports its status twice. The envelope records `evidence: VERIFIED` and `authority: UNVERIFIED`. The payload record inside the same file reports `evidence: PASS` and `authority: PASS_WITH_LIMITS`. Five other axes agree. Two do not, and they disagree about whether authority was established. + +The schema contract gate passes this file. It validates each object against its own schema and never cross-checks the two. So a receipt can be internally inconsistent on the question of whether anything was authorized, and a green gate will not notice. This is exactly the projection drift the design warns about, occurring inside a single artifact of the system that names it. TESTED + +A second instance sits beside it. The two deployment receipts use different status vocabularies. The first is schema 1.0.0 with no declared vocabulary and pass-and-fail values. The second is schema 2.0.0 declaring `stp-v1.1-status-axes` with values such as `SUPPORTED`, `APPLIED`, and `MATCHED`. No mapping between them exists in the repository, so the two production observations in one stream cannot be compared axis by axis. OPEN + +### 10.2 A larger-model control recorded fewer unsupported claims than every eligible structured arm + +The Typed Refusal archive reports unsupported-claim aggregates across five arms of increasing structure, against a corpus of United States Code Title 29 identified by digest `188ab1c50a46`. A sixth arm, an off-model control, was a larger model given the corpus and no structure at all. The corpus bytes and original runs are not in the public archive. + +**Table 10. Typed Refusal Harness. Rates are unsupported claims per 100 hand-decomposed claims. Wilson intervals and two-tailed Fisher exact tests against P0 are exploratory claim-level summaries under a working independence assumption; question and run clustering could not be modeled from the published aggregate.** + +- **P0** - Structure added corpus only, no index, no tool; Unsupported 20; Claims 90; Rate 22.2; 95% CI 14.9-31.8; Exploratory p vs P0 baseline +- **P1** - Structure added hash-verified snapshot, single-unit pull; Unsupported 5; Claims 87; Rate 5.7; 95% CI 2.5-12.8; Exploratory p vs P0 0.0021 +- **P2** - Structure added typed rejections as final answers; Unsupported 6; Claims 105; Rate 5.7; 95% CI 2.6-11.9; Exploratory p vs P0 0.0012 +- **P3** - Structure added byte receipt required per quotation; Unsupported 9; Claims 100; Rate 9.0; 95% CI 4.8-16.2; Exploratory p vs P0 0.0148 +- **P4** - Structure added frozen answers with inline receipts; Unsupported 0; Claims 99; Rate 0.0; 95% CI 0.0-3.7; Exploratory p vs P0 excluded +- **Control** - Structure added larger model, corpus only, no structure; Unsupported 0; Claims 151; Rate 0.0; 95% CI 0.0-2.5; Exploratory p vs P0 not tested + +The eligible structured-arm ordering is non-monotone: P1 and P2 each recorded 5.7 unsupported claims per 100, while P3 recorded 9.0. Pairwise two-tailed Fisher exact tests on the published claim-level aggregates give p = 1.000 for P1 versus P2, p = 0.579 for P1 versus P3, and p = 0.428 for P2 versus P3. The three Wilson intervals overlap. Under the same working-independence assumption, these exploratory summaries do not support ranking P1, P2, and P3 and do not establish equivalence among them. + +At the claim level, the archived aggregates yield p = 0.0021 for P1, p = 0.0012 for P2, and p = 0.0148 for P3 against P0. No decision threshold was registered, and the independence assumption is not supported by the clustered design, so these values are not treated as confirmatory or as arm-level significance tests. P4's zero count is descriptive only. Its answers were supplied by construction, and one of its three runs ignored the cards, so the arm is excluded from accuracy claims. + +The larger-model control recorded zero unsupported claims out of 151, matching the excluded P4 count and recording fewer than each eligible structured arm, P1 through P3. Exploratory claim-level Fisher comparisons yield p = 0.0061 against P1, p = 0.0044 against P2, and p = 0.0002 against P3. Because model identity and scaffolding changed together, these comparisons do not identify a causal effect. Within the published aggregate, replacing the model coincided with a lower unsupported-claim count than any eligible scaffold around the weaker model, while P1 through P3 each remained below that weaker model's P0 baseline. OBSERVED + +**What this experiment does not support** + +The generating prompts, the per-run answers, the corpus file, and the preregistration artifact are all absent from the repository. The repository states that six predictions were registered before any arm ran and that three were falsified, and exactly one of the six is quoted anywhere, partially. I could recompute the published aggregate from `arms.json` and `stats.py`. I could not reproduce a single original run. No significance criterion was preregistered, so every p value here is post-hoc. The archive also does not publish the question-level or run-level counts needed for a cluster-preserving permutation, bootstrap, or multilevel analysis. The retained evidence bears on auditability and claim discipline by making those limits visible. It does not establish that structure or model choice causally improved accuracy. OPEN + +### 10.3 A committed registration record and a replication that denied its own doctrine + +A separate experiment is described by its repository as preregistered. The pinned repository contains a registration file naming three criteria and decision logs for a test of the claim that live per-probe feedback eliminates the premature nulls that committed plans produce. The design was two rounds by three models by three replicates by two arms, for 36 sessions. The inspected public history does not independently prove that the registration file predates those sessions. + +**Table 11. Replication of 2026-07-17. Verdict: doctrine denied. Token counts are block totals of output tokens over six sessions per cell group.** + +- **claude-opus-4-8** - One-shot 5,567; Iterative 35,152; Ratio 6.3×; Scored result 6/6 clean one-shot; 1 premature null iterative +- **claude-sonnet-5** - One-shot 15,673; Iterative 48,800; Ratio 3.1×; Scored result 12/12 scored as calibrated under the experiment rubric +- **claude-haiku-4-5** - One-shot 38,809; Iterative 41,399; Ratio 1.1×; Scored result 3 clean, 3 premature one-shot; iterative arm lost + +Recorded criterion (a) was satisfied, though not by the model that motivated the doctrine. Recorded criterion (b) failed, and that failure denied the doctrine: one opus iterative session produced a genuine premature null, skipping the domain floor extreme after seven matching probes sat in front of it. The recorded bar was zero counterexamples, and one is enough. + +Recorded criterion (c) could not be evaluated at all. All six haiku iterative sessions were truncated mid-play by a session limit, so 30 of 36 sessions were scored. The repository record acknowledges the confound rather than hiding it: models ran in sequential blocks with haiku last, so budget exhaustion clusters on the final block. That is missing data with a known mechanism, recorded as missing. OBSERVED + +Two things survived. Sonnet was scored as calibrated under that experiment's rubric in 12 of 12 sessions across both arms, which the document itself downgrades to a rubric-specific signal rather than a capability benchmark. That label is not empirical forecast calibration as defined in section 5 and is not a protocol-calibrated predicate. And all four valid premature nulls fell on the same round, with zero on the other across its 15 valid sessions, which points to a shared failure pattern across models that per-probe feedback did not close. + +The replay of all 36 recorded cells runs offline through the published harness, asserts twelve checks, and is wired into the repository gate. It reproduces the denied verdict from the recorded artifacts; it does not reproduce the original model sessions or constitute independent validation. TESTED + +### 10.4 Smaller corrections + +- Absolute privacy language on the public site exceeded what the tests covered. +The page said nothing leaves while the host loaded analytics. The claim was split into local input analysis and aggregate page telemetry. +- The offline cache list omitted JavaScript that cached tools required, so a fresh +offline profile could hold a page without the code to run it. The list was closed over its dependencies and installation became fail-closed. +- A data-only overlay still carried HTML through the parser into a rendering sink. +Escaping plus a full parser-to-sink test closed the demonstrated path. +- The privacy scanner reports 85 records. The tree holds 87 files of the scanned +types, and the harness hard-codes two self-exemptions. The number is correct and the exemptions are worth stating. +- The home surface check confirms the string `160 recorded cross-domain +primitives` appears in the page. The data file does contain 160 entries, but the check is a string match, not a cross-count, and would pass if both drifted together. + +> Figure 5. The repair pattern used in the corrections reported above. In these cases, the missing step was a regression gate. + +## 11. What this does not establish + +Stated once, in full, so that no section has to hedge itself. + +Nothing here establishes that a recorded event was true. A false sensor produces a well-formed receipt. A valid credential holder makes a bad decision. Two programs agree because they share one mistake. Comparison against a previously trusted digest reveals a byte difference without showing the earlier bytes described reality. + +Nothing here establishes causation, lawful authority, regulatory compliance, statistical reliability, general safety, or independent validation. The reducers share a specification and may share its errors. Most fixtures are synthetic. Most witnesses are not organizationally independent. There is no live authority service with independently managed keys, trusted time, revocation, and atomic single-use consumption. There is no durable non-equivocating log for a threat model that includes full history replacement. There is no general proof of liveness, fairness, concurrency safety, or survivability. There is no preregistered human study, and no external replication of the architecture. + +The case study is one project's repair history, produced by one person, largely in one computing environment, on data and interfaces that changed while the work proceeded. It may not transfer. + +The single-operator design is a separate validity threat. I selected and classified source artifacts, chose fixtures and checks, wrote the manuscript claims, and applied the claim markers to my own work. Those controls make the decisions inspectable, but they do not make them independent: the same judgment can preserve one error across evidence selection, fixture design, testing, prose, and marker assignment. + +The activation and quotient results are exhaustive only inside a synthetic finite model. Their minima depend on the supplied candidate fields and declared queries. Their stable partition depends on the 151 trace prefixes, ten events, enabled-or-refused transition rule, and finite continuation graph. They establish no fact about an iPhone, another device, an open environment, an unmodeled event, or a richer query. A five-field sufficient representation is not the unique data structure for the behavior, and its 47 realized tuples are not the exact 33-class behavioral quotient. + +The frozen-oracle packet is a three-response check, not a model benchmark. Requested model labels are unattested metadata. The runs share the prompt, schema, platform, operator, and possible training or system dependencies. Twenty-seven exact oracle matches do not establish semantic understanding. The semantic map is an owner-review judgment over quote-linked text, and its three universal absences are part of the result. No real event resolved, so the packet contains neither a forecast outcome nor evidence of forecast calibration. + +The local Lean source states query-signature sufficiency and kernel exactness using Mathlib's pinned `Function.FactorsThrough` vocabulary [47]. The module compiled directly in the local pinned environment, but it is not imported by the package root and no upstream Mathlib review occurred. It is a local formalization aid, not an accepted library contribution or external proof review. + +One risk deserves naming on its own. Strict preservation of unknowns can make a system unusable. If unresolved evidence blocks every action, availability and safety trade against each other, and the protocol offers no principled exchange rate between them. OPEN + +### Six tests that would demote these claims + +- **Clean-room replay.** Give an external team the minimized public packet and +nothing else. Disagreement demotes the replay claim or exposes a hidden dependency. +- **Formal non-promotion check.** Model the lifecycle and either prove or refute +that proposal, acknowledgement, and unresolved evidence cannot advance accepted state. +- **Qualified instrument pilot.** Use one real instrument with a metrology +review, operating limits, uncertainty, and a known sensing footprint. Failure narrows the observation contract. +- **False-assurance study.** Pre-register a comparison between one composite +status and the six-signal view, measuring correct intervention, missed danger, false reassurance, and response time. No benefit leaves Six Signals an accessibility design and not a comprehension improvement. +- **Narrow live adapter.** Implement one bounded consequential tool end to end. +Any unrecorded or duplicated effect falsifies the finality boundary. +- **External marker re-assignment.** Give an external reviewer the pinned +evidence and marker rules, but not the author's assigned markers. Material disagreement demotes the affected claim or exposes an underspecified marker rule. + +## 12. Adapting this + +The names here do not matter. The separation does. Nine steps, in order, and the first one is the one people skip. + +- **Pick one consequential transition.** Not an ontology. One action whose wrong +execution or false acceptance would actually hurt. +- **List what you currently collapse.** Write the exact phrases your system +treats as success: request accepted, job started, HTTP 200, database commit, sensor value, human review, deployment succeeded, customer outcome. Decide which are genuinely different states. +- **Type absence.** Define what a real zero means in your domain, then define +no-change, missing measurement, censoring, staleness, and evaluator failure separately. Never let an empty field pick between them. +- **Bind authority to an operation.** Not to a role, and not to a tool. Separate +risks a user may accept from constraints that must refuse. Record expiry, revocation, and replay behavior. +- **Build the smallest reducer.** Rebuild accepted state from the event prefix +using assigned sequence and causal references. Keep presentation and telemetry derivative. Write a second implementation if the state is load-bearing. +- **Attack it.** Change a subject identifier. Duplicate an event. Remove a +blocking check. Replace a source digest. Reorder events. Force an evaluator error. Return an acknowledgement with no effect. Keep every successful attack as a regression test. +- **Report a vector.** Show consequence, evidence, integrity, privacy, activity, +and the local complete condition separately, with reason codes and source links. Never color alone. +- **Release less than you collected.** Allowlist a public derivative. Keep +sensitive evidence in a restricted store with retention rules. Record what the public verifier can and cannot recreate. +- **Invite a clean-room challenge.** The useful first external test either +matches your bounded result or finds your instructions underspecified. Both results are worth more than another internal pass. + +## 13. What I do not know + +I do not know whether this combination is novel in an academic sense. Section 8.3 names two systems published in 2026 that share the spine of this design, which narrows what could be novel to the two separations stated there. I have not completed the systematic literature review needed to assess even those two, so I make no priority claim. I do not know whether six signals are understood better than one status, because I have run no user study. I do not know whether strict preservation of unknowns is affordable in a high-volume system. I do not know how any of this behaves under network partition, adversarial witnesses, or fast schema churn. I do not know whether the missing Ledger bytes would resolve the terminology conflict in section 2 or deepen it. + +Those are part of the result. The clearest implementation finding in this work is narrow: specific false-pass paths became explicit tests, and unresolved conditions stayed visible instead of being rounded to green. The next tests are external reproduction, one real qualified instrument, and one bounded live adapter. + +## 14. Lineage, credits, and AI-assistance disclosure + +### Where this came from + +The ideas in this paper did not start here, and they did not start with me alone. The early conceptual work was done in April and May 2026 in extended dialogue with language models, principally Claude and Gemini. I set the problems, argued with the answers, and kept what survived. What the models contributed was real and I am not going to describe it as tooling. + +I published early versions of these ideas publicly on LinkedIn in May and June 2026, before the software described here existed. Those mutable posts provide lineage context but are not evidence for this paper. The bounded contribution here is the checkable implementation: what happened when I built it, tested it, tried to break it, and recorded the places it failed. + +I make no originality claim over the component ideas. Causal ordering, event sourcing, compensating transactions, safety and liveness, measurement uncertainty, conformity assessment, and provenance modeling are all established fields, cited in section 15, and none of them are mine. The synthesis is what I did, and section 13 states what is left of it once the neighbours named in section 8.3 are accounted for. + +### Credits and disclosure + +I supplied and classified the source artifacts, set the operating, acceptance, and privacy constraints, chose which claims to make public, and am responsible for the manuscript and every release decision. + +Generative AI systems were used as research, coding, testing, and editing tools. Recorded uses include brainstorming, terminology extraction, source discovery, repository inspection, code drafting, test generation, adversarial review, and manuscript editing. Their outputs were treated as candidate material, never as evidence, authority, authorship, or independent validation. Checks run by agents that share models, prompts, tools, or specifications are not described anywhere in this paper as independent replication. The synthesis and the prose benefited materially from that assistance, and I reviewed the final text. + +Owner-attested AI editorial-review disclosure: Claude (Opus 5) provided editorial review on 15 August 2026. I independently checked each adopted suggestion against the source artifacts and retained evidence. This review is editorial assistance, not evidence, authorship, or independent validation. A minimized disposition note is included at `evidence/editorial-review/PUBLIC-DISPOSITION.md` in the release packet. + +## 15. References + +- A. Vaswani et al. Attention Is All You Need. NeurIPS, 2017. papers.nips.cc/paper/7181 +- L. Lamport. Time, Clocks, and the Ordering of Events in a Distributed System. CACM 21(7), 1978. doi:10.1145/359545.359563 +- M. Fowler. Event Sourcing. 2005. martinfowler.com/eaaDev/EventSourcing.html +- J. Gray. The Transaction Concept: Virtues and Limitations. VLDB, 1981. +- H. Garcia-Molina and K. Salem. Sagas. SIGMOD, 1987. doi:10.1145/38713.38742 +- F. B. Schneider. Implementing Fault-Tolerant Services Using the State Machine Approach. ACM Computing Surveys 22(4), 1990. doi:10.1145/98163.98167 +- D. Seto et al. The Simplex Architecture for Safe On-Line Control System Upgrades. ACC, 1998. doi:10.1109/ACC.1998.703255 +- JCGM 200:2012. International Vocabulary of Metrology, 3rd ed. doi:10.59161/jcgm200-2012 +- JCGM 106:2012. The Role of Measurement Uncertainty in Conformity Assessment. doi:10.59161/jcgm106-2012 +- National Academies. Reproducibility and Replicability in Science. 2019. doi:10.17226/25303 +- JCGM 100:2008. Guide to the Expression of Uncertainty in Measurement. +- ICH E9(R1). Estimands and Sensitivity Analysis in Clinical Trials. Final addendum. +- M. A. Hernán and J. M. Robins. Causal Inference: What If. 2020. miguelhernan.org/whatifbook +- EU General Data Protection Regulation, Articles 5 and 17. Regulation 2016/679. +- A. Rundgren, B. Jordan, S. Erdtman. JSON Canonicalization Scheme. RFC 8785, 2020. +- B. Laurie et al. Certificate Transparency Version 2.0. RFC 9162, 2021. +- W3C. PROV-DM: The PROV Data Model. Recommendation, 2013. +- W3C. Web Content Accessibility Guidelines 2.2. Recommendation, 2024. +- S. Torres-Arias et al. in-toto: Providing Farm-to-Table Guarantees for Bits and Bytes. USENIX Security, 2019. +- SLSA. Supply-chain Levels for Software Artifacts, v1.2. slsa.dev/spec/v1.2 +- NIST SP 800-207. Zero Trust Architecture. 2020. +- NIST SP 800-82 Rev. 3. Guide to Operational Technology Security. 2023. +- NIST AI 100-1. Artificial Intelligence Risk Management Framework 1.0. 2023. +- CPMI-IOSCO. Principles for Financial Market Infrastructures. 2012. +- U.S. SEC. Risk Management Controls for Brokers or Dealers With Market Access. Rule 15c3-5. +- BCBS 239. Principles for Effective Risk Data Aggregation and Risk Reporting. 2013. +- OMG. Structured Assurance Case Metamodel, v2.3. 2023. +- U.S. FDA. Predetermined Change Control Plan for AI-Enabled Device Software Functions. 2025. +- U.S. FDA. Applying Human Factors and Usability Engineering to Medical Devices. 2016. +- EU Artificial Intelligence Act, Regulation 2024/1689, Articles 12, 14, 19. +- Kubernetes. KEP-1623, Standardize Conditions. kubernetes.dev/resources/keps/1623 +- CNCF. CloudEvents Specification 1.0.2. 2022. +- JSON Schema. Core and Validation, Draft 2020-12. +- Model Context Protocol. Specification revision 2026-07-28. +- L. Marom, S. Tibbits, G. Zardini, M. J. Buehler. A Category-Theoretic Framework from Biological Mechanics to Engineered Stimulus-Response Systems. arXiv:2604.26367, 2026. +- P. Kocher, J. Jaffe, B. Jun. Differential Power Analysis. CRYPTO, 1999. doi:10.1007/3-540-48405-1_25 +- J. Macdonald. OpenGoldenRatio (OGR) v0.1: Containment-First Multi-Agent Governance Protocol. Zenodo, 2026. doi:10.5281/zenodo.18969396. Executable demonstration at commit `58450185582f4ecf1410b33f77e22d8d4b0441a2`. +- T. Heightman, E. Orlova, P. Mantrov, and A. Ustimenko. Hamilton-Zero: A Neural Tensor-Network Foundation Model for Ground States of Arbitrary Quadratic Qubit Hamiltonians. arXiv:2608.11911v2 [quant-ph], 2026. doi:10.48550/arXiv.2608.11911. +- G. W. Brier. Verification of Forecasts Expressed in Terms of Probability. Monthly Weather Review 78(1), 1950. doi:10.1175/1520-0493(1950)078<0001:VOFEIT>2.0.CO;2. +- T. Gneiting and A. E. Raftery. Strictly Proper Scoring Rules, Prediction, and Estimation. Journal of the American Statistical Association 102(477), 2007. doi:10.1198/016214506000001437. +- A. P. Dawid. Calibration-Based Empirical Probability. Annals of Statistics 13(4), 1985. doi:10.1214/aos/1176349736. +- J. C. Perdomo, T. Zrnic, C. Mendler-Dünner, and M. Hardt. Performative Prediction. Proceedings of Machine Learning Research 119, 2020. proceedings.mlr.press/v119/perdomo20a.html. +- E. F. Moore. Gedanken-experiments on Sequential Machines. In Automata Studies, 1956. doi:10.1515/9781400882618-006. +- A. Nerode. Linear Automaton Transformations. Proceedings of the American Mathematical Society 9(4), 1958. doi:10.1090/S0002-9939-1958-0135681-9. +- J. E. Hopcroft. An n log n Algorithm for Minimizing States in a Finite Automaton. Stanford CS-TR-71-190, 1971. i.stanford.edu/TR/CS-TR-71-190.html. +- S. Boyd and L. Vandenberghe. Convex Optimization. Cambridge University Press, 2004. web.stanford.edu/~boyd/cvxbook. +- Leanprover-community. Mathlib `Function.FactorsThrough`, pinned at commit `520045ab14e26149ee970e2e617ca04b09bde5d6`. Mathlib/Logic/Function/Basic.lean, lines 832-885. +- A. Ben-Tal and A. Nemirovski. Robust Convex Optimization. Mathematics of Operations Research 23(4), 1998. doi:10.1287/moor.23.4.769. +- ESAA: Event Sourcing for Autonomous Agents in LLM-Based Software Engineering. arXiv:2602.23193, 2026. arxiv.org/abs/2602.23193. +- AgentBound: Verifiable Behavioral Governance for Autonomous AI Agents. arXiv:2606.30970, 2026. arxiv.org/abs/2606.30970. +- Leiden Declaration on Artificial Intelligence and Mathematics. Working group convened by J. Portegies, Eindhoven University of Technology. June 2026, endorsed by the International Mathematical Union. leidendeclaration.ai. + +## A. Properties, assumptions, and limits + +**A.1 Proposal non-promotion** + +Let `L(k)` be a valid event prefix and `A(k) = R(P, L(k))`. Let `U(P)` be the nonempty set of policy-authorized projection-update events, containing only qualified `ACCEPT` records that close a governed transition. A `CORRECT` record begins a new governed transition and may propose a superseding state, but it cannot update `A(k)` without a later qualified `ACCEPT`. Appending only records whose types lie outside `U(P)`, including proposal, preparation, tool acknowledgement, and an unaccepted correction, cannot change `A(k)`. + +By induction over the appended sequence. The base projection is unchanged, and each step records history without invoking the update function. The result depends on complete reference validation and on there being no second update path. A reducer defect or an incomplete policy invalidates the assumption, and section 10.1 shows a related assumption failing in practice. + +**A.2 Unknown preservation** + +For the proposed normalized aggregate over a finite nonempty required set, the result is `PASS` only when every condition passes, `FAIL` if any fails, and `UNRESOLVED` if none fails and any is unknown, stale, or errored. An empty set returns `UNRESOLVED` with reason `INVALID_POLICY`. No unresolved required predicate produces a pass. The rule says nothing about predicates omitted from the set. This general precedence rule has not been exercised by a mixed false-plus-unknown public fixture. PROPOSED + +**A.3 Deterministic replay** + +With fixed policy bytes, event bytes, schema versions, canonicalization, reducer code, and deterministic dependencies, repeated evaluation returns the same projection. This is a property of the computational boundary. It does not establish that the events are true, complete, or authorized. + +**A.4 Hash-link mutation detection** + +Assuming second-preimage resistance, an unambiguous canonical encoding, and a trusted externally anchored tip that transitively commits the event, modifying that event changes the committed tip except with negligible probability. A checkpoint protects only the prefix it commits. An anchor before a modified event does not prevent changing a later event and rehashing the suffix, so detecting suffix replacement requires an authenticated current tip. + +**A.5 Illustrative effect-trace counterexample** + +Consider two declared effects, `alpha` and `beta`. Schedule `(alpha, beta)` emits the ordered trace `[dispatch-alpha, dispatch-beta]`, while schedule `(beta, alpha)` emits `[dispatch-beta, dispatch-alpha]`. If both schedules reduce to the same accepted projection, equal projections still do not entail equal ordered effect traces. This is a counterexample by construction at the specification level. No public fixture in the pinned repository implements it, so it is not a tested result. PROPOSED + +**A.6 Bounded lane balance** + +Capacity is tracked per lane, and the three lanes do not share a unit. Observation, settlement, and recovery each measure something different, so their backlogs are held as a vector and never summed. For a declared lane `x`, a finite trace is evaluated by the deterministic recurrence: + + B_x[k+1] = max( 0, B_x[k] + A_x[k] - S_x[k] ) + + M_x(H) = max { B_x[k] : 0 For declared arrays, initial backlog, horizon, and capacity, these equations +answer one bounded question: whether the computed backlog exceeds capacity anywhere in that finite trace. They do not establish stationarity, asymptotic stability, recurrence class, a queue-length distribution, or a future arrival or service rate. No stochastic queueing theorem is claimed or tested here. + +The autonomy rule in section 3 treats observation, settlement, and recovery capacity as separate constraints. Applying it to a live lane would require declared measurement procedures and a justified rule for projecting beyond the observed window. This project supplies neither. A finite-capacity pass is therefore a local trace result, not evidence that a live lane will keep pace. OPEN + +Where a bounded check is wanted before an estimator exists, the survivability harness substitutes finite reachable-state traversal at a declared horizon. The profile fixes `H = 7` rounds and a no-change tolerance of `epsilon = 0.02` in the lane's declared unit. Both are conventions. A longer horizon evaluates a different, generally more expensive bounded question, and neither value is derived from anything. Under an exact-`H` recovery condition, one horizon is not uniformly stronger or weaker than another without additional monotonicity and absorbing-target assumptions. Every disturbed and controlled state must stay legal, preserve the named invariant, and retain the required essential function, and every state in the frontier at round `H` must be in the recovery target set. Merely reaching the target before `H` is insufficient unless the required `H`-frontier condition also holds. An invalid model, an undefined controller, or an exceeded bound returns `UNKNOWN` rather than a pass. PROPOSED + +**A.7 Brier loss and the coupled-objective shift** + +Let `Y` be binary with `Pr(Y=1)=q`. For a forecast `p`, direct expansion gives: + + E[(p-Y)^2] + = q(p-1)^2 + (1-q)p^2 + = p^2 - 2pq + q + = (p-q)^2 + q(1-q) + +_The final term is constant in p, so the unique minimum on the unit interval is p = q. This is the binary Brier result [39, 40]._ + +If the same objective adds `mu p`, its derivative is `2(p-q)+mu`. Strict convexity gives the constrained minimizer `clip(q-mu/2, 0, 1)`. At `q=1/2` and `mu=1/2`, the optimum moves from `1/2` to `1/4`. The lower report is not a better estimate of `q`. It is the optimum of a different objective. The counterexample proves that an incentive attached directly to the report can distort the report; it does not prove that every coupled system does so. + +**A.8 Query factorization and exact kernels** + +For a finite family of queries, let `sigma_Q(x)` be the vector of all declared answers at state `x`, and let `r(x)` be a proposed representation. The representation is sufficient exactly when equal represented values never hide unequal query signatures: + + r(x) = r(y) implies sigma_Q(x) = sigma_Q(y) + + equivalently, sigma_Q = d after r on the image of r + +_This is sigma_Q.FactorsThrough r in Mathlib's pinned vocabulary [47]. The decoder d need only be defined on represented values that occur._ + +Exactness requires the reverse factorization as well. Then `r(x)=r(y)` if and only if `sigma_Q(x)=sigma_Q(y)`, so the two functions induce the same kernel partition. Their class labels and data structures may still differ. The local `QueryQuotient.lean` module proves component factorization, the sufficiency equivalence, separation of unequal signatures, and this kernel characterization. It compiled directly against the pinned Mathlib environment; the exact source and standalone compile receipt are included in the owner-review packet. This is not an upstream-reviewed contribution. + +The included source and receipt are the complete public evidence boundary for this result. The receipt points to an earlier local package receipt and binds additional package files that this minimized packet does not include, so a public reader cannot replay the complete local receipt chain from these bytes alone. The local package working directory was not itself a Git repository when the compile was recorded; the public release commit anchors the released copies, not their full pre-release history. Other modules imported by `ZeroState.lean` are outside A.8 and do not support the quotient claim. Clean-room reconstruction of the pinned package environment remains open. OPEN + +In the finite activation packet, the unique five-field candidate minimum is sufficient for all seven queries over 151 traces. It realizes 47 representation values, while the full query signature realizes 33 classes. It therefore preserves the answers but does not implement the exact quotient. The result is relative to the supplied ten fields and exhaustive 1,023-subset search. + +**A.9 Future-stable refinement** + +Static query equality is the initial relation `x equiv_0 y` when `sigma_Q(x)=sigma_Q(y)`. Define the next relation by retaining a pair only when it was previously equivalent and every declared event has the same enabled-or-refused status and leads to states equivalent under the previous relation. Each round can split classes and never merge them. On a finite state set the descending sequence must stabilize. + +At the fixed point, equivalent states have the same query answers after every permitted finite continuation. Conversely, any transition-stable equivalence lying inside the initial query kernel survives every refinement round by induction, so it lies inside the fixed point. The limit is therefore the largest transition-stable equivalence contained in the declared query kernel, or the coarsest stable refinement of its partition. This is established sequential-machine refinement, not a new theorem [43-45]. + +The frozen packet's full seven-query partition began with 33 classes and was already stable. Omitting `nextPermittedActions` began with 18 classes and refined to 33 in one round. Both reached the same partition digest `2f129b2ac6c0`. The witness is concrete: after `BOOT`, `ACCEPT_CONSENT` is enabled and advances; from the empty trace it is refused and remains in place. This proves the distinction only in the pinned finite graph. + +**A.10 Pareto existence and policy selection** + +Let a finite nonempty action set carry a finite risk vector. Say action `a` dominates `b` when every component of `a` is no worse and at least one is strictly better. A Pareto-minimal action must exist. Start from any action. If it is dominated, move to a dominator. Strict dominance cannot cycle, and a finite set cannot support an infinite descent, so the process ends at a nondominated action. + +If every scalarization weight is positive, a minimizer of the weighted sum is Pareto-minimal: a dominator would make at least one positively weighted component smaller and none larger, contradicting minimality [46]. The converse does not give one authorized weight vector, and neither existence result gives uniqueness. In the BP-001 fixture, all three actions are nondominated. Returning the frontier and an unresolved selection is therefore the complete result until policy supplies a preference rule. + +## B. Provenance, reuse, and attribution + +The intended public release will use CC BY 4.0. Adaptation will be welcome, including commercial adaptation, with attribution to the author and identification of what was modified. I cite my own sources throughout and expect the same in return, which is the whole of what I am asking. + +For publication, the exact release bytes will be hashed with SHA-256, recorded in the public event history described in section 6, sealed by a checkpoint, and checked again in continuous integration. Until that workflow runs against the final release, this owner-review draft has no completed publication commitment. Once complete, the record can support artifact identity and chronology for the committed bytes. It does not by itself prove authorship, originality, independent creation, or legal priority. + +**Interoperability fixtures in this specification** + +Several values here are arbitrary by construction, meaning any distinct value would serve the same technical purpose. They are fixed so that implementations can exchange and replay the same records. They are technical fixtures, not watermarks or evidence of origin: + +- the domain separation tag `D` in section 6; +- the condition vocabulary `PASS | FAIL | UNKNOWN | STALE | ERROR | +NOT_APPLICABLE`, and the reason code `INVALID_POLICY` returned for an empty required set; +- the coined terms **protocol-calibrated predicate**, **decisive evidence +coverage**, **decisive conformance**, and **non-stale-label fraction**, each defined at first use; +- the term **frozen-oracle packet** for BP-001: the prompt-response evaluation +whose oracle and semantic rubric were fixed before collection and withheld from responders; the term does not imply blinded assignment or blinded assessment; +- the three-lane capacity vector of A.6, naming observation, settlement, and +recovery as separately metered lanes that are never summed. + +An implementation that adopts this protocol may reproduce these values under the license. Attribution and identification of modifications are license obligations, separate from any technical identity check. + +## C. Artifact index +Full SHA-256 values for every digest abbreviated in the text. The table separates public file bytes, derived outputs, and declared digests because they have different verification ceilings. + +Verification note: `REPRODUCE.md` gives the clean-clone procedure for this release packet. Its offline Python and JavaScript verifiers cover the included allowlisted bytes. For external repository rows, check out the named commit and hash the exact file bytes with a local SHA-256 tool. Rows identified only by retained source ID are not public inputs; their digests bind the bytes inspected locally without exposing a workstation path. The projection-root row is reproduced by the named verifier, not by hashing that script. The refusal corpus row cannot be recomputed from the public repository because the source bytes are absent. No single command can reproduce public, retained, and derived rows with different access boundaries. + +**Table 12. Public locators, retained source IDs, and expected digests. Repository abbreviations are RL for Resilience-Ledger, TS for the-stable, and TR for typed-refusal-harness.** + +- **Atlas data-sync contract** - Exact locator and status public blob: RL@275d0b3e7474governance/contracts/atlas-data-sync.contract.v2.json; Expected SHA-256 or root 7366c7042ec2e40a501fe091f9367eb5e8e8449763b69afadf29762864d58263 +- **Atlas runtime contract** - Exact locator and status public blob: RL@275d0b3e7474governance/contracts/atlas-runtime-contract.v1.json; Expected SHA-256 or root 7cd8c2a89f6df20995789f066643240a4cbcbc3ca67d2dc1cc4c71129b22ffd5 +- **Production observation 000001** - Exact locator and status public blob: RL@275d0b3e7474governance/ledger/events/deployment/000001-wp0-production-observation.json; Expected SHA-256 or root 34bde4ec2eb4d1bfb70b8d44df6439cb295bd1dc1293df0ae47490193ad3fa97 +- **Production observation 000002** - Exact locator and status public blob: RL@275d0b3e7474governance/ledger/events/deployment/000002-public-explanation-production-observed.json; Expected SHA-256 or root 4917a927727e3b0cc03cd057100a698ccc18e51751f69dd33f5bed14344fa24f +- **STP v1.2 release manifest** - Exact locator and status public blob: RL@275d0b3e7474research/stp-v1.2/release-manifest.json; Expected SHA-256 or root 2f95ed233a20060d1cbca3fae555410732242b26d9fb08afe482bc3390077704 +- **Cross-language projection root** - Exact locator and status derived output: RL@275d0b3e7474node governance/harnesses/verify-replayers.js; Expected SHA-256 or root 22852b5a3025d4ed7ee1d26cc4efcd51ae2e3e02ba2a20332c2a09827d6462ca +- **Refusal corpus, US Code Title 29** - Exact locator and status declared only: TR@721a824c9f73data/arms.json#corpus.sha256; source bytes absent; Expected SHA-256 or root 188ab1c50a46f0dd2ff32aaa5f65c759a07710e052d297644b1a8f6b58ff413d +- **Replication registration record** - Exact locator and status public blob: TS@77408db59cadexperiments/replication-2026-07-17/PREREGISTRATION.md; Expected SHA-256 or root eff780cff6a4522370af2f00d01a7dc121ab143677f805cbdc865620dad7820b +- **Replication decision logs** - Exact locator and status public blob: TS@77408db59cadexperiments/replication-2026-07-17/decision-logs.json; Expected SHA-256 or root 9fb48b2c0a837f91581c5faf5a043126348b6f86e64bf2383182f65978ffdca6 +- **Generic activation dataset** - Exact locator and status retained source DA-DATASET-001, 98,769 bytes; synthetic input not included in this minimized packet; Expected SHA-256 or root a2dece0b00e9659e3f50df307bd41dedc722a1c5b93b16153f616d1f2b58a179 +- **Generic activation checker config** - Exact locator and status retained source DA-CONFIG-001, 540 bytes; configuration not included in this minimized packet; Expected SHA-256 or root 7d6545f4d5cfa603b33f94ef42f747e4bf5e98631edfef30896cb5d24fb31c4d +- **Generic activation analysis** - Exact locator and status owner-review packet, 2,737 bytesevidence/device-activation/expected-analysis.json; Expected SHA-256 or root 7c550d125d383f7238ff936c7d05a3815ceb35132326253b973562fbca4b0a80 +- **Generic activation receipt** - Exact locator and status owner-review packet, 3,158 bytesevidence/device-activation/BUILD-RECEIPT-000001.md; Expected SHA-256 or root ee60b9aa4baa0286fb5899255380d6bf9772ca9240354bddc3b1a75fce1b9ab6 +- **Transition-stable quotient report** - Exact locator and status owner-review packet, 2,627 bytesevidence/transition-stable-quotient/expected-report.json; Expected SHA-256 or root 1b0e78adcac732561a0263ef2704d53b397597c502f81e88a0999a37232df183 +- **Transition-stable partition over frozen case IDs** - Exact locator and status derived output: stablePartitionSha256 in the transition-stable quotient report; Expected SHA-256 or root 2f129b2ac6c060d253831dbded1810cfd64b030fa6b8a0514d6e048fc7086187 +- **Transition-stable quotient receipt** - Exact locator and status owner-review packet, 4,016 bytesevidence/transition-stable-quotient/BUILD-RECEIPT-000001.md; Expected SHA-256 or root 4d0b0f50c361c51734db51a786fdc40b85de591e077d295677dbd40d63967514 +- **BP-001 prompt** - Exact locator and status owner-review packet, 1,662 bytesevidence/blind-prompt/PROMPT.md; legacy locator retained for receipt continuity; Expected SHA-256 or root 6b0628ef41bdf3b8d871238aa39ac44af43576887d5e0b1ed44ad8e7cdeccaf1 +- **BP-001 response schema** - Exact locator and status retained source BP-SCHEMA-001, 1,808 bytes; not included in this minimized packet; Expected SHA-256 or root 3656a398b63255eefc2121327da65884cca365a965f5601d6eab18e33aa0a505 +- **BP-001 run manifest** - Exact locator and status retained source BP-RUN-MANIFEST-001, 2,175 bytes; not included in this minimized packet; Expected SHA-256 or root 5e104bff1ccd4cffc684667f84783a06414cfb7177da1b43717f0c90145e2f63 +- **BP-001 evaluator report** - Exact locator and status retained source BP-EVALUATOR-001, 20,945 bytes; quote-bearing report not included; Expected SHA-256 or root de2c28735762a153602fc6e4bb777520c2aa3c687837e3f64b6277c459d67fe9 +- **BP-001 packet receipt** - Exact locator and status retained source BP-RECEIPT-001, 4,488 bytes; private packet receipt not included; Expected SHA-256 or root 537e8cc13e8425e53304dd22637df6d186efa4df0be0f910a747b5f78632c815 +- **Lean query quotient source** - Exact locator and status owner-review packet, standalone module, 3,791 bytesevidence/lean-query-quotient/QueryQuotient.lean; Expected SHA-256 or root cfbb166202ade30abc0c79287ff8c1acf216e91a863121ade923218caede9896 +- **Lean query quotient compile receipt** - Exact locator and status owner-review packet, 4,233 bytesevidence/lean-query-quotient/BUILD-RECEIPT-000005.md; Expected SHA-256 or root 8cdb9da9a9ddaba90c63390f1e94d11e18ca32f7d2a95b46b6ce3e1a27de79b2 + +## D. Reproduction and revision lineage + +Clean-clone packet verification is documented in `REPRODUCE.md`. From a full Git checkout at the release commit or tag, the offline Python and JavaScript verifiers must independently return the same canonical report over the declared file allowlist, raw byte lengths, SHA-256 digests, and payload root. The repository-root and packet-local `.gitattributes` rules disable line-ending conversion so a normal Windows checkout does not create a false byte mismatch. A clean-clone test with `core.autocrlf=true` passed before this revision was prepared. This verifies packet identity only; it does not rebuild the PDF, recover excluded inputs, independently replicate an experiment, or establish claim truth, originality, authority, safety, or fitness. TESTED + +Demotion test 6 now has a machine-readable review surface. The release contains a marker-blind `claims.json`, a separate `author-markers.json`, and `reviewer-markers.template.json`. The register excludes the four Table 1 legend examples and assigns a release-scoped ID to every substantive marked unit. A reviewer receives the claims, their embedded neutral marker policy, and registered accessible sources before seeing the author key. Matching markers agree; a mismatch becomes `CONTESTED/HOLD`; a missing assignment is `INCOMPLETE`. No comparison can auto-promote a claim. Because the marked manuscript is public, the separation is a procedural blind, not cryptographic secrecy. + +`CHANGELOG.md` retains the fuller packet history. In summary: owner-review.1 created the minimized public packet; owner-review.2 dispositioned private editorial feedback and tightened claim ceilings; owner-review.3 added the standalone Lean source and receipt plus the statistical corrections; and owner-review.4 standardizes BP-001 terminology, states the Lean chronology boundary, adds clean-clone instructions and packet-local line-ending protection, and makes the external marker-reassignment test executable. Each release receipt is append-only and names its predecessor. A revision identifier describes artifact lineage, not scientific priority or acceptance. + +Jake Tiller · From Model Output to Accepted State · owner-review draft v4, 15 August 2026 · intended for release under CC BY 4.0. This draft is not a certification, a deployment authorization, or a claim of independent validation. diff --git a/research/from-model-output-to-accepted-state/paper/From-Model-Output-to-Accepted-State-Owner-Review-v4.pdf b/research/from-model-output-to-accepted-state/paper/From-Model-Output-to-Accepted-State-Owner-Review-v4.pdf new file mode 100644 index 0000000000000000000000000000000000000000..edaeb679a273f042f4251084dc42b5917623dc99 GIT binary patch literal 996152 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
)r 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

-MPK{`HfY`AVp# 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

rWG{Se}^M-=4-|9PGd3 zaPo1hP|0X`l9?m*CM<(Qw2>6QP})=r<~+>fEp(UrTcm{}%`~6H$QmK9>+~sj$l3W z?)%*4{C?-3Bw*#aR8lM+@R3s$eK;DqbjhX3#{ryudFehc>{+u%! zOQF=kGlneF*!jF5L}FaEwm#)%FvS5RS8x`AxAy1V3G0S!EN~%;Vvh5#S9F=$X8rOJ z>WwCN4_kS~YKItthj+#Fgv$?Ai9)V<27kXz2`?LPLujlznO*4w1R-c3Vw=i}F?(c4F5;(;l{?J`;NLJ_h@kLzA$yUT z3ab}CsaPdm*)Pc^ehMw*;8J?>I=~1W<_T-+grZ+)u`U%?L~bXe)(YuVme8EJRlpI~ zVk4XJ{iJY6YdsPT#T{NY&d5nfAc$f;oq-Tl*N=$3Vwg0$%zo~kk53b42f;>UywZt5 znzmAQf1ofSg{m1tYv{3)_s;{dFky2~usbkTvE~n>p=5U1ih8&@Cd-{zFe%Y(U3urQ zgNv!@Z;WLluWY_jk>fAq@ulMPO>GQ9E|!P*nUO!)6r=u&_aW}vCEZ9zl>gX1%{o3o z%1t9uB>(!dL`c7)91Cgfp=)p74?=6 zQ&C#ZkcM8YaJ=!z>R!;r-ugV>P>3H^~(_m=MgW_dpNhE!6bAxtI zX5Nau(4`whmR5ujhQo*1tB{i4g=)GzQib} z`XL!zoNT&=9M|)C%Hs>uoam?Lt36xkLzW!ovqwVRHcJMwxPatFa`V|Wqvcrqqs}IV zT%gO4Pa4W?KlV0Aqbyw?;q2MvKFo4wVBDswgDEqzYo{R3C^e)nQR;}>^+H3$XYb_?khoX;IbJ^{k@BLe?2QdPUqNKtT#wa zvb$gVPYdEioKSXd?f8xAK{~(HGG^l?e+O67<3gg)$t(Wi_lvH z-@Y|dDh)`jp7tSksN{4uiP+q9%?T;~vXpKraDGu$a42m~9$TIxbB-@-mSL?gR;Hrx zG>>k|XnrbF(tvBKQrb*mD;te!f+bZ__DGGD`D{Cf& zJddB!q7olo(~u04%1lbj$pF8)<3P=?hRwC%3(=@(XYJbPgpo}+DsYaJhvFe$%8jX0 z8hJbe{86$nulbFwSk`v&P;WrB*tR^5?y<+RDONgCyw>vDGzqI&$>5CoK+4R{h?3wk z;ZVL3wJh<_cpr7xQtn^2ir9R#`lW5t(ueAjbUo_~D8mZOh8onyhyImi$@PdI=b8W; z8LG!7w-z!=RpE9bK11rC)vJHhs6#DvBsCGO1|5c|z$6*ItrRk&QycQ(D?ENkVyvj7 z&38rQCpxq?bAh#F14WF~9+ZUv`%sQ2Z;#f9x}8}mGKc=L zr7My9Hc)V>(JF45Rbj6guEuy_bMY(cgg3-lYtNJT zT_$E9JmVU~*|CsCB`u~LU#W_Y-_c6h8CTt!f92~1>}c(&_yu%!0R&n+q8&|b1dHEF$T+E1S}>eK3*!SD4lGwbaJ z>p~ag;QJ6;ur~$2_0f15&hZj#cTvF^fS-cuX?=?eb5=-LB=2OLJxkgCa^JX+<6*4< z66IP`#7-=XcAAoUHV(tUs!Jb0GM7`v+C?@=>!YEj1k>_+sgdk9 zm7Gm=@)M!22+ib0Q0-uFycvo9xL>T~;*s>qdFNfZeaa&+O4EGJxmC@@#t7A#^N|Qa zFsDt|br^+HK;RQBlMG1Hx(#DkY)+9B>mEzE6veU}O4mY4M8TQ3OG+nOMjio>nbK)$q3yGpMmEqn7aU-jMu=o^=D?WIwo zP)y^enLzXvk`qi*L>@UFh4KXDTZ}|Hl#s;g@(M`l6hn^4``tDRO6vup5uYP41%Z5G zN(N}g6^v)WFP8Zu$DB#Bn1uH8c3@m4QtGUDu-sc4dWQ*~w%mG1qiB7s@tU4x#$v9t zxUmdTxnfhurz$U6ULzJ;ST*CT=$_Xtt2NQ1V#4VV2Xudyt zGSpNO%ID#*_QvZ=lHRqQ)H#oQ?1>~dGHUB6`*5V#<7bc00nZX5665)+W!hdbPU|=7 zz&9bh51`{;f}(yI%hw!%g`4!cuI{F4ln_2qy;a9wkugdb@+CQ)sL@X$?Q`Kl*7L}V z+=vp;aFy;QCDZbpGn%S>J@q8rUEHCWHNCH?(K+}c-Ay{9NQXg2qv@+n^iyaB2ZLqtY(`Dfp2Ot(aH=hTbnE#+4&SMD5vj?`H%MT|_Q{0Et#6mFTg zsZ|+qsykD2R@k^ln#Q9@m&5NAQ~P{GMf>B<-=vD8%4thVrWTlZ=${hnxY(SPozt&R zgC7gpCbpv99yb;#0E#bh8P~_8g?f`vNkoA*od~6dL>0hVR$~TVJre&x@_NbY0*=V! z=%Iv#3;L5Hw1_=_Q}0AqlHR1QDpBcSevorc9nz`0vE(}{Y*N9*f&vt)qH* zx}s#NX-xI~7XXgpMffL*B1Yd;Ywo8zAF+!GH3~4D;&YSN5cxB3X!lSyyE~y>2l3{T z;6un{$M0cfH2Q(6^~H>7qz*dA_Ufyn_t+?%y=l{dwcK1~t0RrCPAS*!p{Em2ltY9g zXns5>i6?gf{=OCWJ4Kivzu%f5gf-g|k$3)gQiV_I+eK{TwH4q2MiD&a{&uYRqu)2D z(Rh{hDvl3n4sMt84B&<-#VQ+9NDct`6z-A=IaFJ_mh1cXO61Vml~t?&_i`Y(MYggI zO)naR{dMtOPH|3E>5=87-E?LANGg=U#XxF4l^~Xnj?v``zNH}Xo1{V>>WzrdQ)8K! z;3y0O(eB^dx<&f_!)_2|L}q#2mqddR%rEwsf;Ayd4cqlSsjQq+tBV*Xp#EVGquB7eUKzo3=G zhG;T*s#ai~%OtR>M9i3MX?C_aW}^$^_LQl|7BGh)zEIZvQRf_)&w5NwC{Ej_ z0#mLEjD}@@wA=x8(f#vjrIn7@XdX=F7lM*!bA+aWm#|ghCm5gCsa#FE<1`BURA%qT ziw{L+79261t$B->PS9IUTSWjMD3yfv9MZqJ%x!B=t8bI;1sdE0v(U;u}{3FY77BR>O<;SN|m_NkG z#{}QgwFs`xN^qOd&HyYKupyL(HDp@5LK zV!z5UO=DO-d-JdSW&p8l2{zL$h;~Rw^9f=UVhl2`Q>ZH5^vPYSMZ-AB<8q3(4(~0r zu~vsw=@36u70NsQ1n9jj>i9N`6jLk{_~&~*0(lrFxUU)uG$#d8kyUees3}Q2Ai5Y zxzkEO(Tf;68h%qu^=+K~DdqT0ab;!sr;h)CQI%|!ZOp$5856Mn+gJWu=zkDT|FzTq zRG)v2^3O3H%{TClr!PwN?(aFJ`fI{$_#cE6m^^G1kGIsb!D8+vY{mxW$wzIP`w*D4Q z!0;~~tm?N^hVK^}D+e7D12ZEtfi?jnGdt6F76&ss9S0`^+do;~%^;%s?;`&x{U1sH zZ|VOf8tPy0T3LPT?_T+Tc7m9dzNsSt8x+0ZKh5q$z{$!$$H>Xb{0*7?cTYHd(`=dO z7}?l4+5Z_P#?~s|qm1r5kB#-al(4>?gt57)nG*pU8yg)f12gA$L4cFKmARpyjj5IK zcSZkoa-n~NZfO}=*jeb<7&w_Z2xysD*qG@!*uE7qeW!G6?B9ctnURr=j*au*9Nd3e z|9eG(F%tpn|Kjler{;e${!_EGv5l#d86yD`0}~s^_xa4NoQxd^=)a{o8H*VIGhU$R z|Gf_Z8|U{P-=pTcgN*g9q1>`AJfYo`7TX>>mbN?{GD#8z=xW=}?U{jBnfIZL^!!GZ z2b3g){4nW^L(T;Rf&~Hwp^+*Ovj~W)s@hlhdI~SG;9~*a@ z_@Kae8zZVFrZt$kf6R@~-|>Ily-z3Fn)+^cbYE$1Yn*Ae@ahNv8RcUm^*bJ+rfR=^ z%Ax((R|opLbViIjCVAuur2ZqX;30%gCgJw-=e`ZWgFh-Rb&c=6o<7~LYhAy+oiPd1 zp9=ZF9KgNZx9!-f8+bm<_;K$*>8o34jQqM!{qsPpz(rep!$Nc@m;7JTX=X0_qX$JAJPDAi*Gmt;iCdaWDcu z{6Ph8*4;bD5r7q3a_@eCMNTPs-ROM|YdI29N&){85W%7|aG;EQABl5cZDYohyLQcy zTRPf!9BfZ)@p+x8x7xvktS7{2;~kDl`*j!a{RWR!dajzU7& zh57*Kk&NU8g?fZDL&jKC!6;MYps2^>;V#2H1H8wv#Ia=3b4rScvSXBuwg@_qmhNr2Vi- zO9gtb#;B{)?2553XEBQtsWvbZ$&6d6_eT}&iscn@xUJMw^#2wqKsLlAqvBIj=RB;d z#wH)^C;YIrx3{m`OWRYEZQD~z-)ospN{JgqWjq0pOFHdzHcA{vNjLP=jZN$5(AN!9FaFrLE&@JUfB;fLG%A9wgt)y8ZRp=6bN{ zt3&t=L>`cY*3HazTTvnHie-s6MlPoG)BEr{NyZR;OLHo1~RH`)&DbHK)YI1ET<@^pR!8kuwP zpfR~IzOjx{zSS>MFcjV+NhSn|;`#13^Y(Y_3Q|qzev7q3&AfDhm_R*Y^Z}`wx`#)v3|#X zB=qC9zXI#7f%3@`tHsKGM#S*YE6_Hp>9cOdlBz{~Q1f$E3#35%3xp?#{aOo+Z4Wx> z*89kzV2++!_Ut=ve)AqZMRb zK3a4Rrc53Re(GYoaQK=a=Z}ZgAHjD7_&wlr0=n}dG%F$(FL-f@RngTK(_==f0eJe^ zkDqYgr|tK$5@+VB`}q}M!J?y)EKP9Iid#_^X7tyQ<_-UG|8~J&#YzOaJA6?smKMSQ zOtKDGu#q?nHqbj=$i#qp>8~#${MI12(w<5sp{zoHX>BsfE?MKAXX#LjeOgjn`tcuP zqaRZRAdz(+6_Zr1cixm!Aa(QrKAjy;#n-IVV)&}N-d!V{oUUsg0K&YUHY~)~=Uzq($`(wJ&}!K6)N19 z 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

s&-Nk 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�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

m@ozwar- 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

6(3F#XgZp^f-z$rx0^xk037Mm$=E0rERWbO_u!J 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

QTCmc3lWncGBNnSa^Ct$SjD~--aOKaC2jW`Ql0% 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 str: + return hashlib.sha256(data).hexdigest() + + +def file_record(path: str, source_id: str, *, status: str = "VERIFIED_BYTES") -> dict: + data = (ROOT / path).read_bytes() + return { + "source_id": source_id, + "kind": "packet_file", + "path": path, + "expected_bytes": len(data), + "expected_sha256": digest_bytes(data), + "access": "PUBLIC_PACKET", + "verification_status": status, + } + + +def public_blob( + source_id: str, + repository: str, + commit: str, + path: str, + expected_bytes: int, + expected_sha256: str, +) -> dict: + return { + "source_id": source_id, + "kind": "public_git_blob", + "repository": repository, + "commit": commit, + "path": path, + "expected_bytes": expected_bytes, + "expected_sha256": expected_sha256, + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES", + } + + +@dataclass +class Node: + tag: str + attrs: dict[str, str] + parent: "Node | None" = None + children: list["Node | str"] = field(default_factory=list) + + +class TreeParser(HTMLParser): + def __init__(self) -> None: + super().__init__(convert_charrefs=True) + self.root = Node("root", {}) + self.stack = [self.root] + + def handle_starttag(self, tag: str, attrs: list[tuple[str, str | None]]) -> None: + node = Node(tag, {k: v or "" for k, v in attrs}, self.stack[-1]) + self.stack[-1].children.append(node) + self.stack.append(node) + + def handle_startendtag(self, tag: str, attrs: list[tuple[str, str | None]]) -> None: + node = Node(tag, {k: v or "" for k, v in attrs}, self.stack[-1]) + self.stack[-1].children.append(node) + + def handle_endtag(self, tag: str) -> None: + for index in range(len(self.stack) - 1, 0, -1): + if self.stack[index].tag == tag: + del self.stack[index:] + return + + def handle_data(self, data: str) -> None: + self.stack[-1].children.append(data) + + +def node_text(node: Node | str, *, omit_markers: bool = False) -> str: + if isinstance(node, str): + return node + classes = set(node.attrs.get("class", "").split()) + if omit_markers and node.tag == "span" and "chip" in classes: + return "" + return "".join(node_text(child, omit_markers=omit_markers) for child in node.children) + + +def normalized(text: str) -> str: + return " ".join(html.unescape(text).split()) + + +def walk(node: Node) -> Iterable[Node]: + yield node + for child in node.children: + if isinstance(child, Node): + yield from walk(child) + + +def ancestor(node: Node, tag: str) -> Node | None: + current = node.parent + while current is not None: + if current.tag == tag: + return current + current = current.parent + return None + + +def claim_unit(marker_node: Node) -> tuple[str, Node]: + row = ancestor(marker_node, "tr") + if row is not None: + return "table_row", row + paragraph = ancestor(marker_node, "p") + if paragraph is not None: + return "paragraph", paragraph + current = marker_node.parent + while current is not None: + if current.tag in {"div", "li", "blockquote"}: + return "block", current + current = current.parent + raise ValueError("claim marker has no supported parent unit") + + +def is_table_one_example(marker_node: Node) -> bool: + table = ancestor(marker_node, "table") + if table is None: + return False + captions = [n for n in walk(table) if n.tag == "caption"] + return any(normalized(node_text(n)).startswith("Table 1.") for n in captions) + + +CEILINGS = { + "TESTED": "Exact only within the registered artifact, fixture, command, or derivation; no external validity unless separately stated.", + "OBSERVED": "Observed in the named run or artifact only; no causal or general claim.", + "PROPOSED": "Design, definition, or protocol proposal only; not implementation or outcome evidence.", + "OPEN": "Unresolved; it cannot support acceptance, equivalence, or a positive operational claim.", +} + + +EXPLICIT_CLAIM_SOURCES: dict[int, list[str]] = { + 1: ["EV-PAPER-CONTEXT"], + 2: ["EV-PUBLIC-STP-COMMIT"], + 3: ["EV-DEVICE-ANALYSIS", "EV-DEVICE-RECEIPT", "EV-TRANSITION-REPORT", "EV-TRANSITION-RECEIPT", "EV-BP-PROMPT", "EV-BP-SUMMARY", "EV-BP-EVALUATOR", "EV-BP-RECEIPT", "EV-PUBLIC-STP-COMMIT"], + 4: ["EV-RL-LEDGER-LIB", "EV-RL-REPLAY-PY", "EV-RL-VERIFY-REPLAYERS", "EV-RL-GATE", "EV-RL-ATLAS-DATA-CONTRACT", "EV-RL-ATLAS-RUNTIME-CONTRACT", "EV-RL-OBSERVATION-000001"], + 5: ["EV-PUBLIC-STP-COMMIT"], + 6: ["EV-PAPER-CONTEXT"], + 7: ["EV-PAPER-CONTEXT"], + 8: ["EV-BP-PROMPT", "EV-BP-SUMMARY", "EV-PAPER-CONTEXT"], + 9: ["EV-RL-TREE-275D", "EV-PAPER-CONTEXT"], + 10: ["EV-PAPER-CONTEXT"], + 11: ["EV-PUBLIC-STP-COMMIT"], + 12: ["EV-PAPER-CONTEXT"], + 13: ["EV-PAPER-CONTEXT"], + 14: ["EV-PUBLIC-STP-COMMIT", "EV-PAPER-CONTEXT"], + 15: ["EV-PAPER-CONTEXT"], + 16: ["EV-PUBLIC-STP-COMMIT"], + 17: ["EV-PAPER-CONTEXT"], + 18: ["EV-PAPER-CONTEXT"], + 19: ["EV-RL-LEDGER-LIB", "EV-RL-REPLAY-PY", "EV-RL-VERIFY-REPLAYERS"], + 20: ["EV-RL-LEDGER-LIB", "EV-RL-REPLAY-PY", "EV-RL-VERIFY-REPLAYERS", "EV-RL-CI-GATES"], + 21: ["EV-PUBLIC-STP-COMMIT"], + 22: ["EV-PUBLIC-STP-COMMIT"], + 23: ["EV-RL-LEDGER-LIB", "EV-RL-REPLAY-PY", "EV-RL-VERIFY-REPLAYERS"], + 24: ["EV-PAPER-CONTEXT"], + 25: ["EV-PAPER-CONTEXT"], + 26: ["EV-PAPER-CONTEXT"], + 27: ["EV-RL-GATE"], + 28: ["EV-RL-LEDGER-LIB", "EV-RL-REPLAY-PY", "EV-RL-VERIFY-REPLAYERS", "EV-PAPER-CONTEXT"], + 29: ["EV-PUBLIC-STP-COMMIT"], + 30: ["EV-RL-LEDGER-LIB", "EV-RL-REPLAY-PY", "EV-RL-VERIFY-REPLAYERS"], + 31: ["EV-PAPER-CONTEXT"], + 32: ["EV-PAPER-CONTEXT"], + 33: ["EV-PAPER-CONTEXT"], + 34: ["EV-PAPER-CONTEXT"], + 35: ["EV-PAPER-CONTEXT"], + 36: ["EV-PAPER-CONTEXT"], + 37: ["EV-PAPER-CONTEXT"], + 38: ["EV-RL-GATE", "EV-PAPER-CONTEXT"], + 39: ["EV-DEVICE-ANALYSIS", "EV-DEVICE-RECEIPT", "EV-TRANSITION-REPORT", "EV-TRANSITION-RECEIPT", "EV-BP-PROMPT", "EV-BP-SUMMARY", "EV-BP-EVALUATOR", "EV-BP-RECEIPT", "EV-PAPER-CONTEXT"], + 40: ["EV-RL-GATE"], + 41: ["EV-RL-ATLAS-DATA-CONTRACT", "EV-RL-ATLAS-RUNTIME-CONTRACT", "EV-RL-GATE"], + 42: ["EV-RL-OBSERVATION-000001"], + 43: ["EV-RL-OBSERVATION-000002"], + 44: ["EV-RL-OBSERVATION-000003", "EV-RL-CHECKPOINT-000013"], + 45: ["EV-RL-OBSERVATION-000003", "EV-RL-CHECKPOINT-000013"], + 46: ["EV-BP-PROMPT", "EV-BP-SUMMARY", "EV-BP-EVALUATOR", "EV-BP-RECEIPT"], + 47: ["EV-BP-PROMPT", "EV-BP-SUMMARY", "EV-BP-EVALUATOR", "EV-BP-RECEIPT"], + 48: ["EV-RL-OBSERVATION-000001", "EV-RL-GATE"], + 49: ["EV-RL-OBSERVATION-000001", "EV-RL-OBSERVATION-000002", "EV-RL-TREE-275D"], + 50: ["EV-TYPED-REFUSAL-ARMS", "EV-TYPED-REFUSAL-STATS"], + 51: ["EV-TYPED-REFUSAL-ARMS", "EV-TYPED-REFUSAL-STATS", "EV-TYPED-REFUSAL-TREE", "EV-TYPED-REFUSAL-CORPUS"], + 52: ["EV-STABLE-PREREGISTRATION", "EV-STABLE-DECISION-LOGS", "EV-STABLE-CELLS"], + 53: ["EV-STABLE-REPLAY", "EV-STABLE-CELLS", "EV-STABLE-GATE"], + 54: ["EV-PAPER-CONTEXT"], + 55: ["EV-PUBLIC-STP-COMMIT", "EV-PAPER-CONTEXT"], + 56: ["EV-PUBLIC-STP-COMMIT", "EV-PAPER-CONTEXT"], + 57: ["EV-PAPER-CONTEXT"], + 58: ["EV-PAPER-CONTEXT"], + 59: ["EV-PUBLIC-STP-COMMIT", "EV-PAPER-CONTEXT"], + 60: ["EV-LEAN-QUERY-SOURCE", "EV-LEAN-QUERY-RECEIPT"], + 61: ["EV-WINDOWS-CLEAN-CLONE-V3", "EV-REPRODUCE-RUNBOOK", "EV-PACKET-EOL-RULE"], + 62: ["EV-PAPER-CONTEXT"], +} + + +def explicit_source_ids(claim_number: int) -> list[str]: + try: + return list(EXPLICIT_CLAIM_SOURCES[claim_number]) + except KeyError as error: + raise SystemExit(f"missing explicit source map for claim {claim_number:03d}") from error + + +def source_registry() -> list[dict]: + return [ + public_blob( + "EV-PUBLIC-STP-COMMIT", "JakeTOpenSource/Resilience-Ledger", + "275d0b3e7474ef58456c82a042163567cd12122f", + "research/stp-v1.2/release-manifest.json", 3613, + "2f95ed233a20060d1cbca3fae555410732242b26d9fb08afe482bc3390077704", + ), + { + "source_id": "EV-RL-TREE-275D", + "kind": "public_git_tree", + "repository": "JakeTOpenSource/Resilience-Ledger", + "commit": "275d0b3e7474ef58456c82a042163567cd12122f", + "tree": "ed1342684125e9165f27fdc6d9702b102665b324", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES", + }, + public_blob( + "EV-RL-GATE", "JakeTOpenSource/Resilience-Ledger", + "275d0b3e7474ef58456c82a042163567cd12122f", + "governance/harnesses/run-all.js", 925, + "2725275449ea6bd25d460e328885dcf11685af2854582fef2db8aa61f6f33a96", + ), + public_blob( + "EV-RL-LEDGER-LIB", "JakeTOpenSource/Resilience-Ledger", + "275d0b3e7474ef58456c82a042163567cd12122f", + "governance/ledger/lib.js", 18577, + "8e824d144f5416fc969ab49f13639325c4a5cfc32970a006e3732181b9c68ac8", + ), + public_blob( + "EV-RL-REPLAY-PY", "JakeTOpenSource/Resilience-Ledger", + "275d0b3e7474ef58456c82a042163567cd12122f", + "governance/harnesses/replay.py", 7946, + "db6fdd073034e0c2173af0d65dca6c3db3e73cd4841f25bbc3fbb91aee069279", + ), + public_blob( + "EV-RL-VERIFY-REPLAYERS", "JakeTOpenSource/Resilience-Ledger", + "275d0b3e7474ef58456c82a042163567cd12122f", + "governance/harnesses/verify-replayers.js", 1854, + "7e63495fe344b007b221061c73c8b70dbf536e924db1ce9da9a7d14426da6b49", + ), + public_blob( + "EV-RL-CI-GATES", "JakeTOpenSource/Resilience-Ledger", + "275d0b3e7474ef58456c82a042163567cd12122f", + ".github/workflows/gates.yml", 2914, + "066c58b7841bb0363ed28bb9196f568a0de82f663b891cb8ae6ce6d22d579723", + ), + public_blob( + "EV-RL-ATLAS-DATA-CONTRACT", "JakeTOpenSource/Resilience-Ledger", + "275d0b3e7474ef58456c82a042163567cd12122f", + "governance/contracts/atlas-data-sync.contract.v2.json", 10165, + "7366c7042ec2e40a501fe091f9367eb5e8e8449763b69afadf29762864d58263", + ), + public_blob( + "EV-RL-ATLAS-RUNTIME-CONTRACT", "JakeTOpenSource/Resilience-Ledger", + "275d0b3e7474ef58456c82a042163567cd12122f", + "governance/contracts/atlas-runtime-contract.v1.json", 2558, + "7cd8c2a89f6df20995789f066643240a4cbcbc3ca67d2dc1cc4c71129b22ffd5", + ), + public_blob( + "EV-RL-OBSERVATION-000001", "JakeTOpenSource/Resilience-Ledger", + "275d0b3e7474ef58456c82a042163567cd12122f", + "governance/ledger/events/deployment/000001-wp0-production-observation.json", 6252, + "34bde4ec2eb4d1bfb70b8d44df6439cb295bd1dc1293df0ae47490193ad3fa97", + ), + public_blob( + "EV-RL-OBSERVATION-000002", "JakeTOpenSource/Resilience-Ledger", + "275d0b3e7474ef58456c82a042163567cd12122f", + "governance/ledger/events/deployment/000002-public-explanation-production-observed.json", 10952, + "4917a927727e3b0cc03cd057100a698ccc18e51751f69dd33f5bed14344fa24f", + ), + public_blob( + "EV-RL-OBSERVATION-000003", "JakeTOpenSource/Resilience-Ledger", + "5f9cc145763bc51b183e93b4f7059b25aa6ee2ca", + "governance/ledger/events/deployment/000003-service-worker-drift-closed.json", 4782, + "f03960cb1927a2c89fa5b9e98bd9cdf0cdd977c6b45fe19937346264251158e4", + ), + public_blob( + "EV-RL-CHECKPOINT-000013", "JakeTOpenSource/Resilience-Ledger", + "5f9cc145763bc51b183e93b4f7059b25aa6ee2ca", + "governance/ledger/checkpoints/checkpoint-000013.json", 4922, + "17a2bf4ee223dcbd55bdf22dd66aebac95c6c3273d958fb0a15f4608917fcbb2", + ), + file_record("evidence/device-activation/expected-analysis.json", "EV-DEVICE-ANALYSIS"), + file_record("evidence/device-activation/BUILD-RECEIPT-000001.md", "EV-DEVICE-RECEIPT"), + file_record("evidence/transition-stable-quotient/expected-report.json", "EV-TRANSITION-REPORT"), + file_record("evidence/transition-stable-quotient/BUILD-RECEIPT-000001.md", "EV-TRANSITION-RECEIPT"), + file_record("evidence/blind-prompt/PROMPT.md", "EV-BP-PROMPT"), + file_record("evidence/blind-prompt/PUBLIC-SUMMARY.md", "EV-BP-SUMMARY"), + { + "source_id": "EV-BP-EVALUATOR", + "kind": "retained_digest", + "retained_source_id": "BP-EVALUATOR-001", + "expected_bytes": 20945, + "expected_sha256": "de2c28735762a153602fc6e4bb777520c2aa3c687837e3f64b6277c459d67fe9", + "access": "RETAINED_RESTRICTED", + "verification_status": "DECLARED_ONLY", + }, + { + "source_id": "EV-BP-RECEIPT", + "kind": "retained_digest", + "retained_source_id": "BP-RECEIPT-001", + "expected_bytes": 4488, + "expected_sha256": "537e8cc13e8425e53304dd22637df6d186efa4df0be0f910a747b5f78632c815", + "access": "RETAINED_RESTRICTED", + "verification_status": "DECLARED_ONLY", + }, + file_record("evidence/lean-query-quotient/QueryQuotient.lean", "EV-LEAN-QUERY-SOURCE"), + file_record("evidence/lean-query-quotient/BUILD-RECEIPT-000005.md", "EV-LEAN-QUERY-RECEIPT"), + public_blob( + "EV-TYPED-REFUSAL-ARMS", "JakeTOpenSource/typed-refusal-harness", + "721a824c9f735d3972d720b41685469a1020fa91", "data/arms.json", 4937, + "504ca00f4286f25ee80ebe4cc9aacb2a05326b66c45602e40113117bbb40389b", + ), + public_blob( + "EV-TYPED-REFUSAL-STATS", "JakeTOpenSource/typed-refusal-harness", + "721a824c9f735d3972d720b41685469a1020fa91", "data/stats.py", 5364, + "8ecd41b40b7b75eaaa93ee0caa017e764182a3e0aee0a6f1beda7aa86277c802", + ), + { + "source_id": "EV-TYPED-REFUSAL-TREE", + "kind": "public_git_tree", + "repository": "JakeTOpenSource/typed-refusal-harness", + "commit": "721a824c9f735d3972d720b41685469a1020fa91", + "tree": "ae82fa57c0b34bb2166424128d2537822e53bc26", + "access": "PUBLIC_EXTERNAL", + "verification_status": "VERIFIED_BYTES", + }, + { + "source_id": "EV-TYPED-REFUSAL-CORPUS", + "kind": "retained_digest", + "retained_source_id": "TR-CORPUS-TITLE-29", + "expected_bytes": 11666245, + "expected_sha256": "188ab1c50a46f0dd2ff32aaa5f65c759a07710e052d297644b1a8f6b58ff413d", + "access": "RETAINED_RESTRICTED", + "verification_status": "UNAVAILABLE", + }, + public_blob( + "EV-STABLE-PREREGISTRATION", "JakeTOpenSource/the-stable", + "77408db59cad3f968ac9ba5a0c0c6689a90e80d4", + "experiments/replication-2026-07-17/PREREGISTRATION.md", 7602, + "eff780cff6a4522370af2f00d01a7dc121ab143677f805cbdc865620dad7820b", + ), + public_blob( + "EV-STABLE-DECISION-LOGS", "JakeTOpenSource/the-stable", + "77408db59cad3f968ac9ba5a0c0c6689a90e80d4", + "experiments/replication-2026-07-17/decision-logs.json", 144527, + "9fb48b2c0a837f91581c5faf5a043126348b6f86e64bf2383182f65978ffdca6", + ), + public_blob( + "EV-STABLE-REPLAY", "JakeTOpenSource/the-stable", + "77408db59cad3f968ac9ba5a0c0c6689a90e80d4", + "bridge/replay-replication.js", 5373, + "2fd2afa0b90395194b3165e19c580c4af626dfae7f54cb44193b1c326d25ebb0", + ), + public_blob( + "EV-STABLE-CELLS", "JakeTOpenSource/the-stable", + "77408db59cad3f968ac9ba5a0c0c6689a90e80d4", + "bridge/replication-cells.json", 8097, + "326b544a425daf07fe38790d58ee1dfdba825536bec84e7f81a3c46b187e2939", + ), + public_blob( + "EV-STABLE-GATE", "JakeTOpenSource/the-stable", + "77408db59cad3f968ac9ba5a0c0c6689a90e80d4", "stable-gate.js", 15250, + "7ab31a6cd8daa969a61230cb545db30c27b8cf80820150b07bc7328c5e16a9a2", + ), + file_record( + "evidence/reproduction/WINDOWS-CLEAN-CLONE-V3.md", + "EV-WINDOWS-CLEAN-CLONE-V3", + ), + file_record("REPRODUCE.md", "EV-REPRODUCE-RUNBOOK"), + file_record(".gitattributes", "EV-PACKET-EOL-RULE"), + { + "source_id": "EV-PAPER-CONTEXT", + "kind": "paper_context", + "access": "PUBLIC_PACKET", + "verification_status": "NOT_EVIDENCE", + }, + ] + + +def generate() -> tuple[dict, dict, dict]: + source_hashes = { + name: digest_bytes((ROOT / name).read_bytes()) + for name in ("content_a.py", "content_b.py", "content_c.py") + } + claims: list[dict] = [] + author: list[dict] = [] + sources = source_registry() + source_by_id = {source["source_id"]: source for source in sources} + section = "Front matter" + + for source_path, fragment_name, markup in FRAGMENTS: + parser = TreeParser() + parser.feed(markup) + for node in walk(parser.root): + if node.tag in {"h1", "h2", "h3", "h4"}: + heading = normalized(node_text(node)) + if heading: + section = heading + if node.tag != "span" or "chip" not in node.attrs.get("class", "").split(): + continue + marker = normalized(node_text(node)) + if marker not in MARKERS: + continue + if is_table_one_example(node): + continue + scope, unit = claim_unit(node) + text = normalized(node_text(unit, omit_markers=True)) + anchor = node.attrs.get("data-claim") + if not anchor: + raise SystemExit( + f"claim marker without data-claim anchor in {fragment_name}: {marker}" + ) + claim_id = f"FMOTA-V4-CLM-{anchor}" + if any(existing["claim_id"] == claim_id for existing in claims): + raise SystemExit(f"duplicate data-claim anchor {anchor}") + review_source_ids = explicit_source_ids(int(anchor)) + unknown_sources = [source_id for source_id in review_source_ids if source_id not in source_by_id] + if unknown_sources: + raise SystemExit(f"unregistered explicit sources for {claim_id}: {unknown_sources}") + relied_on_source_ids = [ + source_id for source_id in review_source_ids + if source_by_id[source_id]["verification_status"] != "NOT_EVIDENCE" + ] + unavailable_source_ids = [ + source_id for source_id in relied_on_source_ids + if source_by_id[source_id]["verification_status"] in {"DECLARED_ONLY", "UNAVAILABLE"} + ] + claims.append( + { + "claim_id": claim_id, + "section": section, + "scope": scope, + "fragment": fragment_name, + "claim_text": text, + "claim_text_sha256": digest_bytes(text.encode("utf-8")), + "review_source_ids": review_source_ids, + "review_questions": [ + "Which one Table 1 marker is supported by the registered and available material?", + "What is the strongest reading the registered material actually supports?", + ], + } + ) + author.append( + { + "claim_id": claim_id, + "marker": marker, + "ceiling": CEILINGS[marker], + "rationale": "See the marked manuscript unit and its registered review sources.", + "relied_on_source_ids": relied_on_source_ids, + "unavailable_source_ids": unavailable_source_ids, + } + ) + + if len(claims) != 62: + raise SystemExit(f"expected 62 substantive claims, found {len(claims)}") + + register = { + "schema_version": SCHEMA, + "status": "OWNER_REVIEW", + "paper_output_path": "paper/From-Model-Output-to-Accepted-State-Owner-Review-v4.pdf", + "paper_source_sha256": source_hashes, + "marker_policy": { + "source_path": "content_a.py", + "source_sha256": source_hashes["content_a.py"], + "section": "2 / Table 1", + "definitions": { + "TESTED": { + "meaning": "Exact behavior over a named finite corpus, reproducible by a stated command.", + "never_means": "That the behavior generalizes past that corpus.", + }, + "OBSERVED": { + "meaning": "A bounded inspection of a named surface at a recorded time.", + "never_means": "That the surface still looks that way, or that other surfaces match.", + }, + "PROPOSED": { + "meaning": "Specified or reasoned beyond the tested artifact boundary. It may have a partial fixture, but the marked claim itself is not established.", + "never_means": "Implemented behavior. Do not cite it as a result.", + }, + "OPEN": { + "meaning": "I do not know, and I say where the evidence stops.", + "never_means": "That the question is unimportant.", + }, + }, + }, + "blinding_protocol": ( + "Give claims.json, registered accessible sources, and " + "reviewer-markers.template.json to the reviewer before exposing the " + "marked manuscript or author-markers.json. This is procedural blinding, " + "not cryptographic secrecy after publication." + ), + "comparison_rule": ( + "Compare by claim_id only. Equal markers agree. Any mismatch is " + "MATERIAL_DISAGREEMENT and places the claim in CONTESTED/HOLD until " + "owner adjudication; missing assignments are INCOMPLETE. Never auto-promote." + ), + "sources": sources, + "claims": claims, + } + register_bytes = (json.dumps(register, ensure_ascii=True, indent=2) + "\n").encode("utf-8") + register_sha = digest_bytes(register_bytes) + author_key = { + "schema_version": ASSIGNMENT_SCHEMA, + "claim_register_sha256": register_sha, + "assignment_role": "AUTHOR_KEY", + "assignment_set_id": "author-v4", + "assignments": author, + } + reviewer = { + "schema_version": ASSIGNMENT_SCHEMA, + "claim_register_sha256": register_sha, + "assignment_role": "EXTERNAL_REVIEW", + "assignment_set_id": "replace-with-reviewer-id", + "assignments": [ + { + "claim_id": claim["claim_id"], + "marker": None, + "rationale": "", + "relied_on_source_ids": [], + "unavailable_source_ids": [], + } + for claim in claims + ], + } + return register, author_key, reviewer + + +def encoded(value: dict) -> bytes: + return (json.dumps(value, ensure_ascii=True, indent=2) + "\n").encode("utf-8") + + +def main() -> None: + check_only = "--check" in sys.argv[1:] + register, author_key, reviewer = generate() + outputs = { + "claims.json": register, + "author-markers.json": author_key, + "reviewer-markers.template.json": reviewer, + } + mismatches: list[str] = [] + for name, value in outputs.items(): + path = ROOT / name + data = encoded(value) + if check_only: + if not path.exists() or path.read_bytes() != data: + mismatches.append(name) + else: + path.write_bytes(data) + if mismatches: + raise SystemExit("claim-register mismatch: " + ", ".join(mismatches)) + mode = "CHECK" if check_only else "WRITE" + print(f"CLAIM REGISTER {mode} PASS claims=61") + + +if __name__ == "__main__": + main() diff --git a/research/from-model-output-to-accepted-state/tools/update_manifest.py b/research/from-model-output-to-accepted-state/tools/update_manifest.py new file mode 100644 index 0000000..75ea1c3 --- /dev/null +++ b/research/from-model-output-to-accepted-state/tools/update_manifest.py @@ -0,0 +1,100 @@ +"""Write the deterministic raw-byte release manifest. + +The manifest excludes itself to avoid self-reference. Every other regular file +under the release root is included, including receipts and verifier source. +""" + +from __future__ import annotations + +import hashlib +import json +import mimetypes +from pathlib import Path + + +ROOT = Path(__file__).resolve().parent.parent +MANIFEST = ROOT / "release-manifest.json" + + +def sha256(data: bytes) -> str: + return hashlib.sha256(data).hexdigest() + + +def role(path: str) -> str: + if path.startswith("paper/"): + return "paper-output" + if path.startswith("evidence/"): + return "bounded-evidence" + if path.startswith("tools/"): + return "verification-tool" + if path.startswith("figures/") or path in { + "content_a.py", "content_b.py", "content_c.py", "figures.py", "style.py" + }: + return "paper-source" + return "release-documentation" + + +def media_type(path: Path) -> str: + overrides = { + ".md": "text/markdown", + ".py": "text/x-python", + ".mjs": "text/javascript", + ".ps1": "text/plain", + ".cff": "application/yaml", + ".svg": "image/svg+xml", + } + return overrides.get(path.suffix.lower()) or mimetypes.guess_type(path.name)[0] or "application/octet-stream" + + +def main() -> None: + caches = [ + path.relative_to(ROOT).as_posix() + for path in ROOT.rglob("*") + if path.is_file() and ("__pycache__" in path.parts or path.suffix.lower() in {".pyc", ".pyo"}) + ] + if caches: + raise SystemExit(f"compiled Python cache present: {sorted(caches)!r}") + entries: dict[str, dict[str, object]] = {} + candidates = { + path.relative_to(ROOT).as_posix(): path + for path in ROOT.rglob("*") + if path.is_file() + and path != MANIFEST + and ".tmp" not in path.parts + and "__pycache__" not in path.parts + } + for relative in sorted(candidates): + path = candidates[relative] + data = path.read_bytes() + entries[relative] = { + "bytes": len(data), + "media_type": media_type(path), + "role": role(relative), + "sha256": sha256(data), + "status": "OWNER_REVIEW", + } + + root_material = "".join( + f"{path}\0{record['sha256']}\0{record['bytes']}\n" + for path, record in entries.items() + ).encode("utf-8") + manifest = { + "schema": "accepted-state-owner-review-release.v1", + "release_id": "from-model-output-to-accepted-state-0.1.0-owner-review.4", + "status": "OWNER_REVIEW", + "recorded_date": "2026-08-15", + "hash_basis": "SHA-256 of raw file bytes", + "excludes": ["release-manifest.json self-reference", ".tmp", "__pycache__"], + "payload_root": sha256(root_material), + "files": entries, + } + MANIFEST.write_text( + json.dumps(manifest, ensure_ascii=False, indent=2, sort_keys=False) + "\n", + encoding="utf-8", + newline="\n", + ) + print(f"manifest files={len(entries)} payload_root={manifest['payload_root']}") + + +if __name__ == "__main__": + main() diff --git a/research/from-model-output-to-accepted-state/tools/verify-release.mjs b/research/from-model-output-to-accepted-state/tools/verify-release.mjs new file mode 100644 index 0000000..e9588f4 --- /dev/null +++ b/research/from-model-output-to-accepted-state/tools/verify-release.mjs @@ -0,0 +1,238 @@ +import { createHash } from "node:crypto"; +import { readFileSync, readdirSync, statSync } from "node:fs"; +import { dirname, extname, join, relative, resolve, sep } from "node:path"; +import { fileURLToPath } from "node:url"; + +const root = resolve(dirname(fileURLToPath(import.meta.url)), ".."); +const manifestPath = join(root, "release-manifest.json"); +const textSuffixes = new Set([".cff", ".html", ".json", ".lean", ".md", ".mjs", ".ps1", ".py", ".svg", ".txt"]); +const privatePatterns = [ + ["absolute Windows user path", /[A-Za-z]:[\\/](?:Users|Documents|Downloads|AppData)[\\/]/i], + ["absolute Unix user path", /\/(?:Users|home)\/[^/\s]+\//i], + ["Codex private locator", /(?:\.codex[\\/]|codex-remote-attachments|codex-clipboard-)/i], + ["workspace-only locator", /(?:work\/|work\/(?:device-activation|transition-stable|probabilistic-audit|mathlib-zero-state))/i], + ["local network locator", /(?:localhost|127\.0\.0\.1)/i], + ["email address", /\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}\b/i], + ["private key material", /-----BEGIN [A-Z ]*PRIVATE KEY-----/i], +]; + +function fail(message) { + throw new Error(`VERIFY FAIL: ${message}`); +} + +function sha256(data) { + return createHash("sha256").update(data).digest("hex"); +} + +function portable(path) { + return path.split(sep).join("/"); +} + +function files(directory) { + const output = []; + for (const entry of readdirSync(directory, { withFileTypes: true }).sort((a, b) => a.name < b.name ? -1 : a.name > b.name ? 1 : 0)) { + if (entry.name === ".tmp" || entry.name === "__pycache__") continue; + const absolute = join(directory, entry.name); + if (entry.isDirectory()) output.push(...files(absolute)); + else if (entry.isFile() && absolute !== manifestPath) output.push(portable(relative(root, absolute))); + } + return output.sort(); +} + +function rejectCompiledPythonCaches(directory) { + const found = []; + for (const entry of readdirSync(directory, { withFileTypes: true })) { + const absolute = join(directory, entry.name); + if (entry.isDirectory()) { + if (entry.name === "__pycache__") { + for (const child of readdirSync(absolute)) found.push(portable(relative(root, join(absolute, child)))); + } else if (entry.name !== ".tmp") rejectCompiledPythonCaches(absolute); + } else if (entry.isFile() && [".pyc", ".pyo"].includes(extname(entry.name).toLowerCase())) { + found.push(portable(relative(root, absolute))); + } + } + if (found.length) fail(`compiled Python cache present: ${JSON.stringify(found.sort())}`); +} + +function verifyClaimRegister(manifest) { + let register, author, reviewer; + try { + register = JSON.parse(readFileSync(join(root, "claims.json"), "utf8")); + author = JSON.parse(readFileSync(join(root, "author-markers.json"), "utf8")); + reviewer = JSON.parse(readFileSync(join(root, "reviewer-markers.template.json"), "utf8")); + } catch (error) { + fail(`claim register unreadable: ${error.message}`); + } + if (register.schema_version !== "fmota-claim-register.v1") fail("unknown claim-register schema"); + if (register.status !== "OWNER_REVIEW") fail("claim-register status mismatch"); + const expectedOutput = "paper/From-Model-Output-to-Accepted-State-Owner-Review-v4.pdf"; + if (register.paper_output_path !== expectedOutput) fail("claim-register paper output mismatch"); + if (!manifest.files?.[expectedOutput] || manifest.files[expectedOutput].role !== "paper-output") { + fail("claim-register paper output is not manifest-bound"); + } + for (const sourceName of ["content_a.py", "content_b.py", "content_c.py"]) { + if (register.paper_source_sha256?.[sourceName] !== sha256(readFileSync(join(root, sourceName)))) { + fail(`claim-register paper source mismatch: ${sourceName}`); + } + } + const markerNames = ["OBSERVED", "OPEN", "PROPOSED", "TESTED"]; + const expectedPolicy = { + TESTED: { + meaning: "Exact behavior over a named finite corpus, reproducible by a stated command.", + never_means: "That the behavior generalizes past that corpus.", + }, + OBSERVED: { + meaning: "A bounded inspection of a named surface at a recorded time.", + never_means: "That the surface still looks that way, or that other surfaces match.", + }, + PROPOSED: { + meaning: "Specified or reasoned beyond the tested artifact boundary. It may have a partial fixture, but the marked claim itself is not established.", + never_means: "Implemented behavior. Do not cite it as a result.", + }, + OPEN: { + meaning: "I do not know, and I say where the evidence stops.", + never_means: "That the question is unimportant.", + }, + }; + if (JSON.stringify(register.marker_policy?.definitions) !== JSON.stringify(expectedPolicy)) { + fail("claim-register marker policy mismatch"); + } + if (!Array.isArray(register.sources) || !Array.isArray(register.claims) || register.claims.length !== 62) { + fail("claim-register collection mismatch"); + } + const sourceIds = register.sources.map(source => source?.source_id); + if (sourceIds.some(id => typeof id !== "string") || new Set(sourceIds).size !== sourceIds.length) { + fail("claim-register source IDs are not unique"); + } + const sourceById = new Map(register.sources.map(source => [source.source_id, source])); + for (const [sourceId, source] of sourceById) { + if (source.kind === "packet_file") { + if (typeof source.path !== "string" || !source.path || source.path.split(/[\\/]/).includes("..") || /^[A-Za-z]:[\\/]|^\//.test(source.path)) { + fail(`unsafe packet source path: ${sourceId}`); + } + const sourcePath = join(root, source.path); + if (!manifest.files?.[source.path]) fail(`unbound packet source: ${sourceId}`); + const data = readFileSync(sourcePath); + if (source.expected_bytes !== data.length || source.expected_sha256 !== sha256(data)) fail(`packet source identity mismatch: ${sourceId}`); + } else if (source.kind === "public_git_blob") { + if (!/^[0-9a-f]{40}$/.test(source.commit || "")) fail(`invalid public commit: ${sourceId}`); + if (typeof source.path !== "string" || !source.path) fail(`missing public path: ${sourceId}`); + if (!Number.isInteger(source.expected_bytes) || source.expected_bytes <= 0) fail(`invalid public byte count: ${sourceId}`); + if (!/^[0-9a-f]{64}$/.test(source.expected_sha256 || "")) fail(`invalid public digest: ${sourceId}`); + } else if (source.kind === "public_git_tree") { + if (!/^[0-9a-f]{40}$/.test(source.commit || "") || !/^[0-9a-f]{40}$/.test(source.tree || "")) fail(`invalid public tree identity: ${sourceId}`); + } else if (source.kind === "retained_digest") { + if (!Number.isInteger(source.expected_bytes) || source.expected_bytes <= 0) fail(`invalid retained byte count: ${sourceId}`); + if (!/^[0-9a-f]{64}$/.test(source.expected_sha256 || "")) fail(`invalid retained digest: ${sourceId}`); + } else if (source.kind === "paper_context") { + if (source.verification_status !== "NOT_EVIDENCE") fail("paper context was promoted to evidence"); + } else { + fail(`unknown claim source kind: ${sourceId}`); + } + } + const expectedIds = register.claims.map(claim => (claim && typeof claim === "object") ? claim.claim_id : undefined); + if (!expectedIds.every(id => typeof id === "string" && /^FMOTA-V4-CLM-\d{3}$/.test(id))) fail("malformed claim ID"); + if (new Set(expectedIds).size !== expectedIds.length) fail("duplicate claim IDs"); + const claimIds = []; + for (const claim of register.claims) { + if (!claim || typeof claim !== "object" || typeof claim.claim_id !== "string" || typeof claim.claim_text !== "string") { + fail("claim record identity missing"); + } + const expectedClaimFields = ["claim_id", "claim_text", "claim_text_sha256", "fragment", "review_questions", "review_source_ids", "scope", "section"]; + if (JSON.stringify(Object.keys(claim).sort()) !== JSON.stringify(expectedClaimFields)) fail(`claim field mismatch: ${claim.claim_id}`); + if (claim.claim_text_sha256 !== sha256(Buffer.from(claim.claim_text, "utf8"))) { + fail(`claim text digest mismatch: ${claim.claim_id}`); + } + if (!Array.isArray(claim.review_source_ids) || claim.review_source_ids.length === 0 || new Set(claim.review_source_ids).size !== claim.review_source_ids.length || claim.review_source_ids.some(id => !sourceIds.includes(id))) { + fail(`unregistered review source: ${claim.claim_id}`); + } + claimIds.push(claim.claim_id); + } + if (JSON.stringify(claimIds) !== JSON.stringify(expectedIds)) fail("claim IDs are incomplete or out of order"); + + const registerSha = sha256(readFileSync(join(root, "claims.json"))); + for (const [assignmentSet, role] of [[author, "AUTHOR_KEY"], [reviewer, "EXTERNAL_REVIEW"]]) { + if (assignmentSet.schema_version !== "fmota-marker-assignments.v1") fail(`unknown marker-assignment schema: ${role}`); + if (assignmentSet.assignment_role !== role) fail(`marker-assignment role mismatch: ${role}`); + if (assignmentSet.claim_register_sha256 !== registerSha) fail(`marker-assignment register digest mismatch: ${role}`); + if (!Array.isArray(assignmentSet.assignments) || JSON.stringify(assignmentSet.assignments.map(item => item?.claim_id)) !== JSON.stringify(expectedIds)) { + fail(`marker assignments are incomplete or out of order: ${role}`); + } + for (const item of assignmentSet.assignments) { + if (role === "AUTHOR_KEY") { + const expectedFields = ["ceiling", "claim_id", "marker", "rationale", "relied_on_source_ids", "unavailable_source_ids"]; + if (JSON.stringify(Object.keys(item).sort()) !== JSON.stringify(expectedFields)) fail(`author assignment field mismatch: ${item.claim_id}`); + if (!markerNames.includes(item.marker) || typeof item.ceiling !== "string" || item.ceiling.length === 0) fail(`invalid author assignment: ${item.claim_id}`); + const claim = register.claims[expectedIds.indexOf(item.claim_id)]; + if (!Array.isArray(item.relied_on_source_ids) || !Array.isArray(item.unavailable_source_ids)) fail(`invalid author evidence arrays: ${item.claim_id}`); + if (item.relied_on_source_ids.some(id => !claim.review_source_ids.includes(id))) fail(`author relied on unregistered claim source: ${item.claim_id}`); + if (item.unavailable_source_ids.some(id => !item.relied_on_source_ids.includes(id))) fail(`author unavailable source is not relied on: ${item.claim_id}`); + if (["TESTED", "OBSERVED"].includes(item.marker) && !item.relied_on_source_ids.some(id => sourceById.get(id)?.verification_status !== "NOT_EVIDENCE")) { + fail(`result claim lacks evidence: ${item.claim_id}`); + } + } else { + const expectedFields = ["claim_id", "marker", "rationale", "relied_on_source_ids", "unavailable_source_ids"]; + if (JSON.stringify(Object.keys(item).sort()) !== JSON.stringify(expectedFields)) fail(`reviewer assignment field mismatch: ${item.claim_id}`); + if (item.marker !== null || item.rationale !== "" || JSON.stringify(item.relied_on_source_ids) !== "[]" || JSON.stringify(item.unavailable_source_ids) !== "[]") { + fail(`reviewer template is not blank: ${item.claim_id}`); + } + } + } + } +} + +const manifestBytes = readFileSync(manifestPath); +let manifest; +try { + manifest = JSON.parse(manifestBytes.toString("utf8")); +} catch (error) { + fail(`manifest unreadable: ${error.message}`); +} +if (manifest.schema !== "accepted-state-owner-review-release.v1") fail("unknown manifest schema"); +if (manifest.hash_basis !== "SHA-256 of raw file bytes") fail("unknown hash basis"); + +rejectCompiledPythonCaches(root); +const actual = files(root); +const expected = Object.keys(manifest.files || {}).sort(); +if (JSON.stringify(actual) !== JSON.stringify(expected)) fail(`allowlist mismatch actual=${JSON.stringify(actual)} expected=${JSON.stringify(expected)}`); + +const rootParts = []; +for (const path of actual) { + const data = readFileSync(join(root, path)); + const record = manifest.files[path]; + const fileDigest = sha256(data); + if (record.bytes !== data.length || record.sha256 !== fileDigest) fail(`byte identity mismatch: ${path}`); + if (record.status !== "OWNER_REVIEW") fail(`unexpected file status: ${path}`); + if (typeof record.role !== "string" || record.role.length === 0) fail(`missing role: ${path}`); + rootParts.push(`${path}\0${fileDigest}\0${data.length}\n`); + + const suffix = extname(path).toLowerCase(); + if (textSuffixes.has(suffix) || path.endsWith("/LICENSE") || ["requirements.txt", ".gitattributes", ".gitignore"].includes(path)) { + const text = new TextDecoder("utf-8", { fatal: true }).decode(data); + if (text.includes("\uFFFD") || text.includes("\0")) fail(`invalid text scalar in ${path}`); + if (path !== "tools/verify_release.py" && path !== "tools/verify-release.mjs") { + for (const [label, pattern] of privatePatterns) { + if (pattern.test(text)) fail(`${label} in ${path}`); + } + } + if (/(?:gh[opsu]_|github_pat_)[A-Za-z0-9_]{20,}/.test(text)) fail(`credential-like token in ${path}`); + if (suffix === ".json") { + try { JSON.parse(text); } catch (error) { fail(`invalid JSON in ${path}: ${error.message}`); } + } + } else if (suffix === ".pdf" && !data.subarray(0, 5).equals(Buffer.from("%PDF-"))) { + fail(`invalid PDF signature: ${path}`); + } +} + +const payloadRoot = sha256(Buffer.from(rootParts.join(""), "utf8")); +if (payloadRoot !== manifest.payload_root) fail("payload root mismatch"); + +verifyClaimRegister(manifest); + +const report = { + fileCount: actual.length, + manifestSha256: sha256(manifestBytes), + payloadRoot, + status: "PASS", +}; +process.stdout.write(`${JSON.stringify(report)}\n`); diff --git a/research/from-model-output-to-accepted-state/tools/verify.ps1 b/research/from-model-output-to-accepted-state/tools/verify.ps1 new file mode 100644 index 0000000..02e3f6b --- /dev/null +++ b/research/from-model-output-to-accepted-state/tools/verify.ps1 @@ -0,0 +1,50 @@ +param( + [string]$PythonExe = "", + [string]$NodeExe = "" +) + +$ErrorActionPreference = "Stop" +$root = Split-Path -Parent $PSScriptRoot + +if (-not $PythonExe) { + $pythonCommand = Get-Command python -ErrorAction SilentlyContinue + if ($pythonCommand) { $PythonExe = $pythonCommand.Source } + else { + $fallback = Join-Path $env:LOCALAPPDATA "Python\bin\python.exe" + if (Test-Path -LiteralPath $fallback) { $PythonExe = $fallback } + } +} +if (-not $NodeExe) { + $nodeCommand = Get-Command node -ErrorAction SilentlyContinue + if ($nodeCommand) { $NodeExe = $nodeCommand.Source } +} +if (-not $PythonExe -or -not (Test-Path -LiteralPath $PythonExe)) { throw "Python 3 executable not found" } +if (-not $NodeExe -or -not (Test-Path -LiteralPath $NodeExe)) { throw "Node.js executable not found" } + +& $PythonExe "-B" (Join-Path $PSScriptRoot "update_claim_register.py") "--check" | Out-Null +if ($LASTEXITCODE -ne 0) { throw "Claim-register regeneration check failed" } + +$left = Join-Path ([System.IO.Path]::GetTempPath()) ("accepted-state-python-" + [guid]::NewGuid().ToString("N") + ".json") +$right = Join-Path ([System.IO.Path]::GetTempPath()) ("accepted-state-node-" + [guid]::NewGuid().ToString("N") + ".json") +try { + & $PythonExe (Join-Path $PSScriptRoot "verify_release.py") | Set-Content -LiteralPath $left -Encoding UTF8 + if ($LASTEXITCODE -ne 0) { throw "Python release verifier failed" } + & $NodeExe (Join-Path $PSScriptRoot "verify-release.mjs") | Set-Content -LiteralPath $right -Encoding UTF8 + if ($LASTEXITCODE -ne 0) { throw "JavaScript release verifier failed" } + + $leftText = (Get-Content -LiteralPath $left -Raw).Trim() + $rightText = (Get-Content -LiteralPath $right -Raw).Trim() + if ($leftText -cne $rightText) { + throw "Cross-language canonical report mismatch`npython=$leftText`nnode=$rightText" + } + $report = $leftText | ConvertFrom-Json + Write-Output "VERIFY PASS" + Write-Output "cross_language_parity=PASS" + Write-Output "files=$($report.fileCount)" + Write-Output "payload_root=$($report.payloadRoot)" + Write-Output "manifest_sha256=$($report.manifestSha256)" + Write-Output "status=$($report.status)" +} +finally { + Remove-Item -LiteralPath $left,$right -Force -ErrorAction SilentlyContinue +} diff --git a/research/from-model-output-to-accepted-state/tools/verify_release.py b/research/from-model-output-to-accepted-state/tools/verify_release.py new file mode 100644 index 0000000..5b10afc --- /dev/null +++ b/research/from-model-output-to-accepted-state/tools/verify_release.py @@ -0,0 +1,288 @@ +"""Verify the owner-review release from raw bytes, without network access.""" + +from __future__ import annotations + +import ast +import hashlib +import json +import re +import sys +from pathlib import Path + + +ROOT = Path(__file__).resolve().parent.parent +MANIFEST = ROOT / "release-manifest.json" +TEXT_SUFFIXES = {".cff", ".html", ".json", ".lean", ".md", ".mjs", ".ps1", ".py", ".svg", ".txt"} +PRIVATE_PATTERNS = { + "absolute Windows user path": r"[A-Za-z]:[\\/](?:Users|Documents|Downloads|AppData)[\\/]", + "absolute Unix user path": r"/(?:Users|home)/[^/\s]+/", + "Codex private locator": r"(?:\.codex[\\/]|codex-remote-attachments|codex-clipboard-)", + "workspace-only locator": r"(?:work/|work/(?:device-activation|transition-stable|probabilistic-audit|mathlib-zero-state))", + "local network locator": r"(?:localhost|127\.0\.0\.1)", + "email address": r"\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,}\b", + "private key material": r"-----BEGIN [A-Z ]*PRIVATE KEY-----", +} + + +def fail(message: str) -> None: + raise SystemExit(f"VERIFY FAIL: {message}") + + +def digest(data: bytes) -> str: + return hashlib.sha256(data).hexdigest() + + +def actual_files() -> list[str]: + caches = [ + path.relative_to(ROOT).as_posix() + for path in ROOT.rglob("*") + if path.is_file() and ("__pycache__" in path.parts or path.suffix.lower() in {".pyc", ".pyo"}) + ] + if caches: + fail(f"compiled Python cache present: {sorted(caches)!r}") + return sorted( + path.relative_to(ROOT).as_posix() + for path in ROOT.rglob("*") + if path.is_file() + and path != MANIFEST + and ".tmp" not in path.parts + and "__pycache__" not in path.parts + ) + + +def verify_claim_register(manifest: dict) -> None: + claims_path = ROOT / "claims.json" + author_path = ROOT / "author-markers.json" + reviewer_path = ROOT / "reviewer-markers.template.json" + try: + register = json.loads(claims_path.read_text(encoding="utf-8")) + author = json.loads(author_path.read_text(encoding="utf-8")) + reviewer = json.loads(reviewer_path.read_text(encoding="utf-8")) + except Exception as error: + fail(f"claim register unreadable: {error}") + + if register.get("schema_version") != "fmota-claim-register.v1": + fail("unknown claim-register schema") + if register.get("status") != "OWNER_REVIEW": + fail("claim-register status mismatch") + expected_output = "paper/From-Model-Output-to-Accepted-State-Owner-Review-v4.pdf" + if register.get("paper_output_path") != expected_output: + fail("claim-register paper output mismatch") + output_record = manifest.get("files", {}).get(expected_output) + if not isinstance(output_record, dict) or output_record.get("role") != "paper-output": + fail("claim-register paper output is not manifest-bound") + source_hashes = register.get("paper_source_sha256") + if not isinstance(source_hashes, dict): + fail("claim-register paper source map missing") + for source_name in ("content_a.py", "content_b.py", "content_c.py"): + if source_hashes.get(source_name) != digest((ROOT / source_name).read_bytes()): + fail(f"claim-register paper source mismatch: {source_name}") + + marker_names = {"TESTED", "OBSERVED", "PROPOSED", "OPEN"} + expected_policy = { + "TESTED": { + "meaning": "Exact behavior over a named finite corpus, reproducible by a stated command.", + "never_means": "That the behavior generalizes past that corpus.", + }, + "OBSERVED": { + "meaning": "A bounded inspection of a named surface at a recorded time.", + "never_means": "That the surface still looks that way, or that other surfaces match.", + }, + "PROPOSED": { + "meaning": "Specified or reasoned beyond the tested artifact boundary. It may have a partial fixture, but the marked claim itself is not established.", + "never_means": "Implemented behavior. Do not cite it as a result.", + }, + "OPEN": { + "meaning": "I do not know, and I say where the evidence stops.", + "never_means": "That the question is unimportant.", + }, + } + if register.get("marker_policy", {}).get("definitions") != expected_policy: + fail("claim-register marker policy mismatch") + + sources = register.get("sources") + claims = register.get("claims") + if not isinstance(sources, list) or not isinstance(claims, list) or len(claims) != 62: + fail("claim-register collection mismatch") + source_ids = [source.get("source_id") for source in sources if isinstance(source, dict)] + if len(source_ids) != len(set(source_ids)) or None in source_ids: + fail("claim-register source IDs are not unique") + source_by_id = {source["source_id"]: source for source in sources} + for source_id, source in source_by_id.items(): + kind = source.get("kind") + status = source.get("verification_status") + if kind == "packet_file": + relative = source.get("path") + if not isinstance(relative, str) or not relative or ".." in Path(relative).parts or Path(relative).is_absolute(): + fail(f"unsafe packet source path: {source_id}") + source_path = ROOT / relative + if relative not in manifest.get("files", {}) or not source_path.is_file(): + fail(f"unbound packet source: {source_id}") + data = source_path.read_bytes() + if source.get("expected_bytes") != len(data) or source.get("expected_sha256") != digest(data): + fail(f"packet source identity mismatch: {source_id}") + elif kind == "public_git_blob": + if not re.fullmatch(r"[0-9a-f]{40}", str(source.get("commit", ""))): + fail(f"invalid public commit: {source_id}") + if not isinstance(source.get("path"), str) or not source["path"]: + fail(f"missing public path: {source_id}") + if not isinstance(source.get("expected_bytes"), int) or source["expected_bytes"] <= 0: + fail(f"invalid public byte count: {source_id}") + if not re.fullmatch(r"[0-9a-f]{64}", str(source.get("expected_sha256", ""))): + fail(f"invalid public digest: {source_id}") + elif kind == "public_git_tree": + if not re.fullmatch(r"[0-9a-f]{40}", str(source.get("commit", ""))) or not re.fullmatch(r"[0-9a-f]{40}", str(source.get("tree", ""))): + fail(f"invalid public tree identity: {source_id}") + elif kind == "retained_digest": + if not isinstance(source.get("expected_bytes"), int) or source["expected_bytes"] <= 0: + fail(f"invalid retained byte count: {source_id}") + if not re.fullmatch(r"[0-9a-f]{64}", str(source.get("expected_sha256", ""))): + fail(f"invalid retained digest: {source_id}") + elif kind == "paper_context": + if status != "NOT_EVIDENCE": + fail("paper context was promoted to evidence") + else: + fail(f"unknown claim source kind: {source_id}") + + expected_ids = [claim.get("claim_id") if isinstance(claim, dict) else None for claim in claims] + if any(not isinstance(cid, str) or not re.fullmatch(r"FMOTA-V4-CLM-\d{3}", cid) for cid in expected_ids): + fail("malformed claim ID") + if len(set(expected_ids)) != len(expected_ids): + fail("duplicate claim IDs") + claim_ids: list[str] = [] + for claim in claims: + if not isinstance(claim, dict): + fail("claim record is not an object") + claim_id = claim.get("claim_id") + claim_text = claim.get("claim_text") + expected_claim_fields = { + "claim_id", "section", "scope", "fragment", "claim_text", + "claim_text_sha256", "review_source_ids", "review_questions", + } + if set(claim) != expected_claim_fields: + fail(f"claim field mismatch: {claim_id}") + if not isinstance(claim_id, str) or not isinstance(claim_text, str): + fail("claim record identity missing") + if "marker" in claim or "ceiling" in claim: + fail(f"author-marker leakage in marker-blind record: {claim_id}") + if claim.get("claim_text_sha256") != digest(claim_text.encode("utf-8")): + fail(f"claim text digest mismatch: {claim_id}") + review_ids = claim.get("review_source_ids") + if not isinstance(review_ids, list) or not review_ids or len(review_ids) != len(set(review_ids)) or any(item not in source_ids for item in review_ids): + fail(f"unregistered review source: {claim_id}") + claim_ids.append(claim_id) + if claim_ids != expected_ids: + fail("claim IDs are incomplete or out of order") + + register_sha = digest(claims_path.read_bytes()) + for assignment_set, role in ((author, "AUTHOR_KEY"), (reviewer, "EXTERNAL_REVIEW")): + if assignment_set.get("schema_version") != "fmota-marker-assignments.v1": + fail(f"unknown marker-assignment schema: {role}") + if assignment_set.get("assignment_role") != role: + fail(f"marker-assignment role mismatch: {role}") + if assignment_set.get("claim_register_sha256") != register_sha: + fail(f"marker-assignment register digest mismatch: {role}") + assignments = assignment_set.get("assignments") + if not isinstance(assignments, list) or [item.get("claim_id") for item in assignments] != expected_ids: + fail(f"marker assignments are incomplete or out of order: {role}") + for item in assignments: + if role == "AUTHOR_KEY": + if set(item) != {"claim_id", "marker", "ceiling", "rationale", "relied_on_source_ids", "unavailable_source_ids"}: + fail(f"author assignment field mismatch: {item.get('claim_id')}") + if item.get("marker") not in marker_names or not isinstance(item.get("ceiling"), str) or not item["ceiling"]: + fail(f"invalid author assignment: {item.get('claim_id')}") + claim = claims[expected_ids.index(item["claim_id"])] + relied = item.get("relied_on_source_ids") + unavailable = item.get("unavailable_source_ids") + if not isinstance(relied, list) or not isinstance(unavailable, list): + fail(f"invalid author evidence arrays: {item.get('claim_id')}") + if any(source_id not in claim["review_source_ids"] for source_id in relied): + fail(f"author relied on unregistered claim source: {item.get('claim_id')}") + if any(source_id not in relied for source_id in unavailable): + fail(f"author unavailable source is not relied on: {item.get('claim_id')}") + if item["marker"] in {"TESTED", "OBSERVED"} and not any( + source_by_id[source_id]["verification_status"] != "NOT_EVIDENCE" + for source_id in relied + ): + fail(f"result claim lacks evidence: {item.get('claim_id')}") + else: + if set(item) != {"claim_id", "marker", "rationale", "relied_on_source_ids", "unavailable_source_ids"}: + fail(f"reviewer assignment field mismatch: {item.get('claim_id')}") + if item.get("marker") is not None or item.get("rationale") != "" or item.get("relied_on_source_ids") != [] or item.get("unavailable_source_ids") != []: + fail(f"reviewer template is not blank: {item.get('claim_id')}") + + +def main() -> None: + try: + manifest_bytes = MANIFEST.read_bytes() + manifest = json.loads(manifest_bytes.decode("utf-8")) + except Exception as error: + fail(f"manifest unreadable: {error}") + + if manifest.get("schema") != "accepted-state-owner-review-release.v1": + fail("unknown manifest schema") + if manifest.get("hash_basis") != "SHA-256 of raw file bytes": + fail("unknown hash basis") + + expected = sorted(manifest.get("files", {}).keys()) + actual = actual_files() + if actual != expected: + fail(f"allowlist mismatch actual={actual!r} expected={expected!r}") + + root_material = bytearray() + for relative in actual: + path = ROOT / relative + data = path.read_bytes() + record = manifest["files"][relative] + file_digest = digest(data) + if record.get("bytes") != len(data) or record.get("sha256") != file_digest: + fail(f"byte identity mismatch: {relative}") + if record.get("status") != "OWNER_REVIEW": + fail(f"unexpected file status: {relative}") + if not isinstance(record.get("role"), str) or not record["role"]: + fail(f"missing role: {relative}") + root_material.extend(f"{relative}\0{file_digest}\0{len(data)}\n".encode("utf-8")) + + if path.suffix.lower() in TEXT_SUFFIXES or path.name in {"LICENSE", "requirements.txt", ".gitattributes", ".gitignore"}: + try: + text = data.decode("utf-8") + except UnicodeDecodeError as error: + fail(f"invalid UTF-8 in {relative}: {error}") + if "\ufffd" in text or "\x00" in text: + fail(f"invalid text scalar in {relative}") + if relative not in {"tools/verify_release.py", "tools/verify-release.mjs"}: + for label, pattern in PRIVATE_PATTERNS.items(): + if re.search(pattern, text, flags=re.I): + fail(f"{label} in {relative}") + if re.search(r"(?:gh[opsu]_|github_pat_)[A-Za-z0-9_]{20,}", text): + fail(f"credential-like token in {relative}") + if path.suffix.lower() == ".json": + try: + json.loads(text) + except Exception as error: + fail(f"invalid JSON in {relative}: {error}") + if path.suffix.lower() == ".py": + try: + ast.parse(text, filename=relative) + except SyntaxError as error: + fail(f"invalid Python in {relative}: {error}") + elif path.suffix.lower() == ".pdf" and not data.startswith(b"%PDF-"): + fail(f"invalid PDF signature: {relative}") + + payload_root = digest(bytes(root_material)) + if payload_root != manifest.get("payload_root"): + fail("payload root mismatch") + + verify_claim_register(manifest) + + report = { + "fileCount": len(actual), + "manifestSha256": digest(manifest_bytes), + "payloadRoot": payload_root, + "status": "PASS", + } + sys.stdout.write(json.dumps(report, ensure_ascii=False, separators=(",", ":"), sort_keys=True) + "\n") + + +if __name__ == "__main__": + main() From 6f0d82f59bbb2a4996fc5ea54d2df110ce5c9e0e Mon Sep 17 00:00:00 2001 From: Jake Date: Thu, 20 Aug 2026 18:33:34 -0400 Subject: [PATCH 2/2] research: align the publication boundary with the PR state BOUNDARIES.md said the directory is prepared for a draft pull request. PR #15 is open for review, so the file and its state disagreed by one word in a file whose first line calls itself load-bearing. The substantive boundary is unchanged: an open PR, branch, commit, or passing verifier still does not authorize merge, release tagging, DOI registration, or deployment. Manifest re-pinned. Both verifiers pass from the committed bytes. Co-Authored-By: Claude Opus 5 --- research/from-model-output-to-accepted-state/BOUNDARIES.md | 2 +- .../release-manifest.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/research/from-model-output-to-accepted-state/BOUNDARIES.md b/research/from-model-output-to-accepted-state/BOUNDARIES.md index 2865f46..e9687d3 100644 --- a/research/from-model-output-to-accepted-state/BOUNDARIES.md +++ b/research/from-model-output-to-accepted-state/BOUNDARIES.md @@ -33,7 +33,7 @@ This file is load-bearing. A result copied from this packet should retain the re ## Publication boundary -This directory is prepared for a draft pull request. A draft PR, branch, commit, or passing verifier does not authorize merge, release tagging, DOI registration, deployment, or a claim that the owner has accepted every semantic mapping. +This directory is prepared for review by pull request. An open PR, branch, commit, or passing verifier does not authorize merge, release tagging, DOI registration, deployment, or a claim that the owner has accepted every semantic mapping. The private editorial review and its locator remain outside the public packet. Only the minimized owner disposition is authorized for this review surface. diff --git a/research/from-model-output-to-accepted-state/release-manifest.json b/research/from-model-output-to-accepted-state/release-manifest.json index 6a39046..89351db 100644 --- a/research/from-model-output-to-accepted-state/release-manifest.json +++ b/research/from-model-output-to-accepted-state/release-manifest.json @@ -9,7 +9,7 @@ ".tmp", "__pycache__" ], - "payload_root": "e1110bd7796e48b0eff2b6606926c7f305999004bd42741c9fb53a5251af5e25", + "payload_root": "c9989cee521959afba896ee1cc15f6e40cbe883f29a779b02f9720b3d71935cf", "files": { ".gitattributes": { "bytes": 239, @@ -19,10 +19,10 @@ "status": "OWNER_REVIEW" }, "BOUNDARIES.md": { - "bytes": 3444, + "bytes": 3446, "media_type": "text/markdown", "role": "release-documentation", - "sha256": "919b3020eb8f34d63fc0944718293f85ebc1ba234c444c96f1e789a34c760fad", + "sha256": "7c424c8572c2a2569e87c642723c026aa47b378bfc1b47f67673a0ce04d5eb67", "status": "OWNER_REVIEW" }, "CHANGELOG.md": {