Across this site we say every consequential decision lands in a replayable audit trail. This page defines the unit that trail is made of — the decision and execution record — and walks through one annotated sample so you can see exactly what gets captured and what does not.
A decision and execution record is the structured account written when an agent works through a governed workflow. It captures what the decision rested on and what happened as a result — enough for a reviewer to reconstruct the decision without having been in the room.
What it is not. A record does not expose private model chain-of-thought. It captures the evidence, checks, and actions a reviewer needs to hold a decision accountable — not the raw internals of a model.
If a partner, regulator, or your own risk team asks why an agent did something, the answer should be a record you open — not a story you reconstruct.
The mechanics behind this — hash-chained logs, evidence chains, structured traces — are covered in the Trust Center and on the Architecture page.
Below is a single illustrative record from a venture-intelligence workflow: an example company being considered for partner review. Every value is representative sample data, constructed to show the shape of a record.
The same sample as structured data — an excerpt of the illustrative record above, not customer output.
{
"record_type": "illustrative_governed_decision_record",
"status": "illustrative",
"workflow": { "id": "venture-intelligence", "version": "0.9-example" },
"request": "Should the example company advance to partner review?",
"evidence": {
"items": 8,
"low_confidence_items": 2,
"material_gaps": ["customer retention cohort", "reference call"]
},
"policy": {
"risk_class": "medium",
"authority_level": "recommend",
"human_approval_required": true
},
"decision": {
"recommendation": "advance with conditions",
"human_status": "approved in example",
"resulting_action": "partner-review package prepared"
},
"disclaimer": "Synthetic demonstration. Not customer data, a live trace or a performance claim."
}
The decision and execution record is how the governed-autonomy ladder — Evidence → Calibrated confidence → Gated authority → Full audit trail — becomes inspectable. Each rung leaves its mark in the record.
The record's evidence and source-context fields show what the decision rested on — including the gaps.
The evaluation fields carry the confidence attached to the output, so weak signals read as weak.
The policy fields show the risk class, the authority the agent held, and the gate a human had to pass.
Records are written to hash-chained, replayable logs — the trail is the accumulation of records like this one.
In a walkthrough we run a workflow on representative inputs and show the record it leaves behind — every rung of the ladder, end to end.
Browse the demo library → Visit the Trust Center →