Find the gap before changing anything.
Run the Refund Integrity Scan over your recent refunds. It reads the system of record and reports what settled, what is still pending, what duplicated, and what never happened.
Postcept checks each protected refund, cancellation and ticket against the system of record and returns one enforceable decision: safe to claim complete, or exactly why not.
Open-source relay and verifierRelay mode keeps credentials in your environmentEvery decision signed, verifiable offline
Refund processed and ticket resolved.
status: claimedWhen an AI agent says a refund was processed, a ticket was resolved, or a subscription was cancelled, that is only a completion claim. The system of record may tell a different story, and that mismatch is the completion gap, where agent trust breaks.
The agent reports success, but the external system never changed.
A retry, timeout, or lost idempotency key performs the same action twice.
The action happened, but skipped a required verification, approval, or policy step.
OAuth state, signed URLs, session tokens, webhooks, or operation IDs break across handoffs.
Every verification returns safe_to_claim_complete with a machine-readable reason. Your application enforces it, so the entity being checked never grades its own work.
{
"decision": "pending",
"safe_to_claim_complete": false,
"lifecycle": "pending_finality",
"claim_reason": "pending_finality",
"next_reverify_at": "…"
}A refund can be real and still not final. The decision separates the two, names the reason, and carries the deadline for the next re-check, so pending never silently becomes done.
const v = await postcept.verifyRefund(claim);
if (!v.safe_to_claim_complete) {
// Real but not final. Say "processing",
// never "done" and never "failed".
return hold(v);
}
await notifyCustomer("Your refund is complete.");
await closeTicket();The SDK’s guard() goes further and returns the strongest customer message the evidence supports: complete, processing, or under review. The agent never gets to overstate what actually happened.
Postcept starts with refunds, credits, and cancellations, the actions where agents touch money and customer trust, and where a wrong “done” can become a chargeback, a reopened ticket, and a broken promise. Here is exactly what Postcept checks before any of that can happen.
Same engine, same API, three postures. Start in Monitor without touching your workflow, then turn on the gate for your highest-risk action first.
Run the Refund Integrity Scan over your recent refunds. It reads the system of record and reports what settled, what is still pending, what duplicated, and what never happened.
Call the API on each completion and watch the decisions accumulate: how often claims disagree with reality, how long finality takes, what would have been held. Reversals and reopens surface on re-verification.
Your workflow branches on safe_to_claim_complete before it confirms, closes or notifies. Everything that fails the contract routes to recovery with the evidence attached.
A Postcept Receipt is a tamper-evident JSON object: what the agent claimed, which systems were checked, every postcondition, the evidence, and a signature. Verified, failed, or duplicate, each outcome becomes signed evidence you can store, audit, and act on.
{
"receipt": "pcpt_rcpt_01HY9Q8F3X",
"operation": "op_refund_8F31",
"agent": "SupportAgent-04",
"action": "refund_customer",
"result": "verified",
"systems": ["stripe", "zendesk"],
"postconditions": {
"refund_exists": true,
"amount_matches": true,
"customer_matches": true,
"duplicate_check": "passed",
"ticket_updated": true
},
"evidence": {
"stripe": "re_4md82k",
"zendesk": "#48921"
},
"signature": "ed25519:9f3c...a17b",
"issued_at": "2026-06-23T09:41:26Z"
}In Relay mode, provider credentials and raw records stay in your own infrastructure. The open-source relay reads the system of record, minimizes what it keeps, and signs what it observed. Postcept separately signs its evaluation. Both signatures ride on the receipt, and anyone can verify them offline against the published keys.
The relay runs in your VPC or locally with read-only credentials, reads the system of record, and signs the observation. Provider secrets and raw records never reach Postcept.
Postcept evaluates the signed observation against the versioned outcome contract and signs the result. Two signatures over distinct roles, observation and evaluation, neither able to forge the other, both verifiable offline.
Postcept reads only the records needed to verify an action, never more than the postcondition requires.
It confirms what happened. It never moves money, edits records, or takes actions on your behalf.
Every result is signed over its full contents, so any later modification is detectable.
TLS 1.2+ in transit, encrypted at rest, with scoped, revocable credentials.
Incomplete and duplicate actions go to your review and recovery workflows, never to auto-action.
Keep your agent framework, workflow engine, and approvals. Postcept adds verification on top.
The core technical claims trace to live artifacts you can inspect without asking us.
Signed log checkpoints are anchored to the public Sigstore Rekor transparency service, and every witness bundle sits in a public append-only history.
Inspect the bundlesIndependent uptimeThe API is probed every 15 minutes from infrastructure outside the accounts that serve it, with every probe committed to a public history.
See the live historyProvenance-attested releasesThe verifier and SDKs publish through CI with signed provenance. npm audit signatures verifies the path from source to package.
Check the packagesAn open benchmarkThe Completion Gap Gauntlet scores the live engine against baselines on a public set of safe completions and traps, reporting false safes and false blocks separately.
Run it yourselfThe short version of what Postcept does, how it's different, and how it handles your systems.
The completion gap is the difference between what an AI agent claims it completed and what the system of record proves actually happened, for example, an agent reporting a refund as processed when Stripe has no matching refund.
Add outcome verification to your high-risk agent actions. Keep your existing agent stack, workflow engine, and approvals. Postcept checks the system of record and signs the receipt.