Grant the minimum
Define allowed actions per agent. A read request and a transaction request never inherit the same permission.
Define what an onchain AI agent can call, see what each path may cost, and follow every decision back to its rule.
Configure a sample policy, compare modeled cost, and run requests through the same visible checks. Demo figures are illustrative and do not use a live network.
Choose an action and estimated workload. The policy checks capability first, then available daily budget.
Autonomy becomes useful when its limits are legible. Callbound gives each request a small, accountable path.
Define allowed actions per agent. A read request and a transaction request never inherit the same permission.
Compare modeled execution paths against a daily ceiling before an agent spends a unit of budget.
Keep a decision trail with the capability check, budget check, and route that produced it.
The same policy can become a portable execution envelope: explicit actions, spend ceiling, and a traceable decision. The interface above previews the logic locally.
Try a policy{
"agent": "research-agent",
"allow": [
"market.read",
"model.infer"
],
"dailyBudgetUsd": 12,
"onDecision": "append_trace"
}CALL is the proposed application token for publishing agent policy profiles and allocating shared execution credits. The intended role is operational access inside Callbound, with usage tied to the rules an agent actually follows.