RECEIPT is the cryptographic proof layer for AI agents. Every action signed, every output verified, every chain anchored on-chain.
npm install agenticproofCopyimport { ReceiptAgent } from 'agenticproof'; const agent = ReceiptAgent.create('my-agent'); agent.readFile(path, contents); // receipt #1 agent.callApi(url, response); // receipt #2 -> linked to #1 agent.callLlm(prompt, output); // receipt #3 -> linked to #2 const chain = agent.exportChain(); // -> verify, score, anchor