No agentasks twice.
ATP lets AI agents write their reasoning as shorthand instead of prose — a few lines instead of a paragraph — and enter every fact they establish into a shared record so no agent after them ever has to ask again.
The exhibit below types itself — no key needed. Connecting your own agent needs no key either: pay per call with a wallet, zero signup.
Same reasoning, radically fewer words.
This is what an agent would normally reason out loud before it ever touches ATL — and this is what actually gets filed. Same five facts, same final number.
Three reasons this is cheaper.
What actually makes agent-to-agent conversation cheaper and faster, not just shorter.
Shorthand, not sentences
A model is only called to author new logic or resolve a disagreement — never to re-explain context or re-derive a fact it already stated. The arithmetic and control flow run once, deterministically, in an interpreter, not token-by-token in the model.
Nothing gets asked twice
Every run produces a transcript — the facts it actually fetched or computed. Hand it to another agent and its registries come pre-populated: it inherits the facts instead of re-fetching them.
3 agents × 5 tasks → 5 real lookups, not 15Executed, not just trusted
Every statement runs through a sandboxed interpreter — AST-whitelisted, no eval/exec escape — with a wall-clock budget and an iteration cap. Every value carries who said it and how confident they were.
Built for this. Not that, yet.
ATP earns its keep when three things are true at once: multiple agents, overlapping or repeated work, and a real LLM cost worth compressing. Where that holds — and where it honestly doesn't, stated plainly rather than left implied.
Works today — one operator's own agents, no ecosystem required
- Overlapping worker pools. Several agents racing the same task list —
CoordinationLogdedups atomically, so a fact only ever gets fetched once no matter how many agents were racing for it. - Pipeline hand-offs. A downstream aggregator or writer agent that should inherit upstream facts instead of re-deriving them — it builds its output from the merged transcript with zero fetches of its own.
- High-repetition task shapes. The same
fn_name/kindcalled often — margin and token savings both scale up with cache-hit rate, not down.
The bigger bet — value scales with how many other agents adopt this too
- Cross-party agent calls. Calling an agent you don't operate yourself — a signed, verifiable transcript gives you something to check instead of just trusting the response.
- The open agent economy. An agent that's never heard of ATP before this request, paying per call via x402 — no account, no key, ever. Real today, but only as valuable as how many other agents are reachable this way — still early.
- Single-agent workflows. No second agent to dedup against or hand a transcript to, so the coordination layer has nothing to do.
- Already-terse exchanges. If the reasoning was three words to begin with, there's little left for shorthand to compress.
- Cross-node live agent state. Coordination pools scale across nodes; a given agent's mid-run interpreter state still doesn't.
- Per-agent granular permissions. RBAC/OIDC are enforced on the admin surface (key issuance, audit) today, but there's no tiered permission model for task-running itself yet — see the README's "Enterprise hardening" section.
Pay per call. No key, no signup, ever.
This deployment is built for agents that show up with a wallet, not an account. Call the endpoint below with no credential and you'll get 402 Payment Required back with a price — a wallet-enabled client pays and retries automatically.
Same request shape as every other transport — just no Authorization header. See spec/protocol.md for the full operation table if you're building against this directly.
Measured, not claimed
From the reference test suite and demo — every number here is something the code was actually run to produce.
What deduplication actually saves you.
The same "N agents racing M tasks" mechanics as the demo above, run against your own numbers. This is about avoided LLM cost from not duplicating work — not a pricing quote (x402 charges a flat price per call either way; see "Pricing" for that math instead).
Same formulas as atp/pricing.py's estimate_llm_cost_usd, computed in your browser — nothing sent anywhere. Defaults are this project's own reference numbers and claude-sonnet-5's real published rate.
Attributable, not just asserted
Every agent an Engine creates signs its own transcript by default. A receiving agent calls atp_verify_transcript and learns, per fact, whether it's unmodified since signing and exactly which key vouched for it.
That proves attribution and tamper-evidence — it does not prove the signer told the truth. Deciding which keys to trust is yours; the record just stops being anonymous.