Feature · agent-based decision records
Every agent decision, recorded with its inputs and outputs.
How it works
For agentic systems, Attestry captures tool invocations, LLM prompts, and decision outcomes in a signed ABDR (Agent-Based Decision Record). You get the replay; regulators get the audit; your users get transparency.
Code sample
API preview · ships with kernel checkpoint A// API preview — endpoint below ships with kernel checkpoint A
// (kernel plan §4). Path string + payload shape are stable.
// Record an agent-led decision with inputs + outcome.
const res = await fetch("https://attestry.ai/api/v1/decisions", {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${ATTESTRY_API_KEY}`,
},
body: JSON.stringify({
systemId: "sys_0001",
action: "deny-loan",
actor: "agent:underwriter-v2",
inputs: { applicantId: "app_42", score: 612 },
rationale: "Score below policy floor (650).",
outcome: "denied",
}),
});
const { data } = await res.json();
// data = { recordId, sequenceNumber, recordHash, manifestVersionId }Free plan includes fingerprinting, unverified attestations, and a public registry listing. Upgrade when you need signed proofs or SLA-backed verification.