◆ Agent Runtime
On-chain agents, first-class.
AnsemAgent ships a native runtime for autonomous programs that hold keys, manage capital, and route intents across DeFi — verifiable end-to-end.
Primitive
Intent
A declarative, signed statement of what the user wants — never how to do it.
Primitive
Planner
Decomposes intents into ordered actions across protocols and chains.
Primitive
Executor
Submits transactions with MEV-aware ordering and gas hedging.
Primitive
Verifier
ZK-attested checks that outputs match the original intent envelope.
Example · agentkit
import { Agent, intent } from "@ansemagent/runtime";
const swapAgent = new Agent({
name: "BestPriceSwap",
capital: { ANSEM: "5.0" },
policy: { maxSlippageBps: 30 },
});
await swapAgent.run(
intent.swap({ from: "ANSEM", to: "USDC", amount: "1.0" })
);180ms
Avg plan time
3,412
Active agents
1.2M
Intents / day