Why a badge is not enough
Every library ships a green CI badge and asks you to trust it. For money moving autonomously between agents, “trust my tests” is not an assurance model. A single disagreed byte is a failed receipt, a mis-bound payment, or a refund that will not compose. The question that actually matters is whether you can prove, independently, that an implementation produces exactly the right bytes without trusting the author. Cell and KAF answer it in two layers.Cell (P1): the hermetic runtime
A cell is a deterministic, isolated runtime pinned to an exact (language, runtime version, libc variant) and resolved to an exact image digest per run. It takes the corpus and re-derives every vector from first principles inside a sealed environment.- No network at execution. Provisioning is a recorded, network-on exception;
execution runs with the network off (
--network=none) against a read-only copy of the corpus, and a network canary proves the isolation held. - Real modules only. A real-module rule means every result comes from an
installed module, never from a
-cone-liner or a REPL context that could mask an environment defect. - Same bytes anywhere. Run the same cell on your laptop, our CI, or a stranger’s server and you get the same bytes every time.
KAF (P2): the Keystone Seal
Reproducibility is necessary but not sufficient. You also need to know a given run is authentic and unmodified. The Keystone Seal turns each fully green run into a receipt.- The receipt body is JCS-canonicalised with
algovoi-substrate, then differential-checked against the independentrfc8785, so the canonicalisation itself is cross-checked, not assumed. - It is signed (RFC 9421 plus RFC 9530) by the published
algovoi-rfc9421-signer. - The receipt file is its own canonical bytes, its SHA-256 is the chain link,
each receipt names its predecessor, and the first is anchored to the P0 snapshot
(
MANIFEST.txt). History cannot be reordered or backdated.
Verify it offline yourself
The proof is agit clone. Reproduce every vector set and re-check the seal chain
with the published verifier, with nothing to trust but the maths.
kaf/README.md.
Where it sits on the substrate
Conformance vector sets
The 43 anchor sets and 352 vectors KAF reproduces, cross-validated across ten languages.
JCS canonicalisation substrate
The five normative rules and the ten-implementation matrix the cells re-run.
RFC 9421 signer
The published signer that seals each receipt (RFC 9421 plus RFC 9530).
Verify it yourself
The hosted and installable path to reproduce the corpus without our infrastructure.
Frequently asked questions
What is the Keystone Assurance Framework (Cell and KAF)?
It is AlgoVoi’s assurance layer over the JCS conformance corpus. A cell is a hermetic runtime that reproduces every conformance vector byte for byte with the network off; KAF (the Keystone Seal) turns each fully green run into a sealed, hash-chained receipt. Together they let anyone re-run the corpus and verify the result offline, with no trust in AlgoVoi.How is a hermetic cell different from a normal CI run?
A normal CI run proves the maintainer’s suite passed on the maintainer’s machine. A cell pins the language, runtime version, and libc to an exact image digest, runs with the network off against a read-only corpus, and proves isolation with a network canary. The same cell produces the same bytes on any machine, so you re-run it rather than trust it.Can I verify a KAF receipt without trusting AlgoVoi?
Yes. Each receipt is JCS-canonical, its SHA-256 is the chain link, and each names its predecessor back to a genesis anchor. The publishedkaf_verify tool
recomputes the whole chain offline against a public key, with no AlgoVoi account
or network call, so an auditor can confirm nothing was reordered, edited, or
backdated.