Drop AgentsProof into your agent in 30 seconds. Get a public URL that proves it works — scored on goal completion, tool accuracy, efficiency, quality, and safety.
import { AgentsProof } from '@agentsproof/sdk';
const ap = new AgentsProof({ apiKey: process.env.AGENTSPROOF_API_KEY });
const run = ap.startRun({ projectSlug: 'my-agent', input: { query } });
const result = await run.trace('llm_call', 'gpt-4o', () => llm(query));
const { publicUrl } = await run.complete({ answer: result });
console.log(publicUrl); // → https://agentsproof.dev/r/abc123One package, zero config. Works in any Node or edge runtime.
Drop run.trace() around each LLM and tool call. That's the whole integration.
Every run is scored on 5 axes and gets a shareable report card.
import { AgentsProof } from '@agentsproof/sdk';
const ap = new AgentsProof({ apiKey: process.env.AGENTSPROOF_API_KEY });
const run = ap.startRun({ projectSlug: 'my-agent', input: { query } });
const result = await run.trace('llm_call', 'gpt-4o', () => llm(query));
const { publicUrl } = await run.complete({ answer: result });
console.log(publicUrl); // → https://agentsproof.dev/r/abc123Shipped 4 agents this month. AgentsProof is the first time I actually know which one is good.
The public report URL is clever. Posted my score on HN and got 3 people asking what I used.
5 minute setup. Caught a tool-call loop I'd never have spotted otherwise.