execution_ref is the post-decision tier of the AlgoVoi keystone. Identity proves
who an agent is; a decision_ref proves an action was authorized. execution_ref
closes the remaining gap: it proves what the agent did and binds that execution back
to the exact decision that authorized it, so a verifier can confirm the executed action
is consistent with the decision, not merely correlated with an identity.
executed_at_ms is an epoch-millisecond integer hashed directly, so the hash
reproduces byte-for-byte across any language without a string-conversion step.
Why it is a distinct primitive
decision_ref is a load-bearing field of the preimage. That is what makes
execution_ref a new primitive rather than a bare action hash: change the authorizing
decision and the execution_ref diverges. An execution recorded under one decision
cannot be re-attributed to another. No raw agent_id appears in the preimage (it is
already bound inside decision_ref), so execution_ref is no PII by construction.
outcome is a closed enum: COMMITTED is the single committing result, SKIPPED is
the exactly-once dedupe result, FAILED and REVERSED are terminal non-committing
states.
The keystone flow
execution_ref completes one recomputable chain from identity to execution:
trust_query_ref can assess the full ordered
chain, so one verdict spans identity through execution. The end-to-end composition is
proven byte-for-byte in the conformance corpus (keystone_v1 composition and the
execution_ref_v1 set).
Library
build_keystone.
Relationship to action_ref
execution_ref does not replace action_ref field for field
(the shapes differ on purpose). action_ref remains available and unchanged for existing
adopters; execution_ref is the decision-bound evidence primitive the keystone leads
with. The two coexist, so you can upgrade to the latest substrate and continue as normal,
or adopt execution_ref when you are ready by binding your executed action to the
decision_ref that authorized it.
See also
- Spend decision chain: the decision tier
execution_refbinds to - Conformance vectors: the
execution_ref_v1set andkeystone_v1composition - Canonicalisation substrate: the JCS discipline underneath