Proof Pipeline
The Problem
AI agents and workflows execute decisions automatically — but those decisions are not recorded in a verifiable, auditable way.
Audit response is always reactive. When issues arise, teams dig through logs, query databases, and rely on staff memory.
Cronozen solves this at the design level: every decision generates its proof at the moment of creation.
v1 Pipeline: Record → Approve → Seal → Export
The current Proof Pipeline consists of 4 stages:Stage 1 — Record
A decision event is created via API with structured metadata.- Who made the decision (actor)
- What action was taken
- Why (input context, AI reasoning)
- How (AI model, confidence, mode)
Stage 2 — Approve
Human approval seals the event. This is the governance checkpoint.RECORDED → SEALED.
Stage 3 — Hash Chain Sealing
The approved event is linked to the previous event’s hash, forming an immutable chain.- computeChainHash(): Content + previous hash + timestamp → SHA-256 (JSON key sorting canonicalization)
- Tamper detection: Modifying any event breaks all subsequent hashes — immediately detectable
- Per-domain chains: Each domain operates independently, concurrent access uses serializable transactions
Stage 4 — Export
Sealed evidence is exportable as a JSON-LD v2 audit document.- Structured decision record (actor, action, input, AI context)
- Approval chain with timestamps
- SHA-256 hash chain link and integrity status
- Evidence level (
DRAFT→DOCUMENTED→AUDIT_READY)
Real-World Example: Settlement Flow
What This Achieves
Audit response shifts from investigation to lookup. If a sealed event exists, the decision was recorded and approved. The hash chain guarantees no tampering occurred.This is compliance-by-design — not reactive compliance, but compliance built into the architecture itself.
Roadmap: v2+ Planned Capabilities
The following features are designed but not yet implemented in v1:The DPU Engine page describes the full architectural vision including governance guards. v1 implements the core: record → approve → hash chain seal → export.