The shape of one pact’s life
The five stages:- Intent — you tell your agent, in plain language, what you want done.
- Draft — the agent proposes a pact: intent, execution plan, policies, completion conditions. It does not yet have authority to act.
- Review — the pact appears in your Cobo Agentic Wallet app. You see the four elements and any risks the agent flagged.
- Approve — you approve, adjust the policies/completion conditions, or reject. Only on approval is a pact-scoped API key issued to the agent. Nothing moves before this.
- Execute — the agent operates inside the pact. Every transaction is checked by the policy engine before it touches a chain. When a completion condition is met, the key revokes itself and the pact closes with a full audit trail.
What the human actually sees
The review step is the inflection point. In the Cobo Agentic Wallet app you see the four elements side by side and decide: approve as-is, adjust the policies or completion conditions before approving, or reject outright. See Review and approve pacts for the full owner-side workflow, and What is a pact for the conceptual deep-dive on the four elements.What the agent is actually doing
On the agent side, the same flow looks like a structured submit/poll/execute loop:caw pact submitposts the PactSpec and waits for owner action.- On approval, the agent receives a pact-scoped API key whose authority is exactly the policies the owner approved — no more.
- Every subsequent call is evaluated by the policy engine, which can return ALLOW, DENY (with a machine-readable reason the agent can act on), or escalate to a pending operation.
- On completion, the key is invalidated server-side. The agent’s next call returns an authentication error.
Where domain knowledge comes from (preview)
Coming with the April release: the Recipe Library.
aave-v3-lending, uniswap-v3-swap, binance-spot). Each recipe contains:
- Overview — what the operation is, contract addresses, supported tokens.
- Typical Flow — the step-by-step transaction sequence (approve → call → settle).
- Safety & Risks — concrete rules and risks the agent must respect.
execution-plan and policies, then submits as usual. Recipes are knowledge, not workflow: the user still decides what to do, the owner still decides what’s allowed, the recipe just tells the agent what it needs to know to draft the pact accurately.
This means the flow on this page does not change when recipes ship — recipes just make Stage 2 (Draft) much more reliable for known protocols.
Next
- Review and approve pacts — the owner side, in detail
- What is a pact — the four elements
- Submit and Manage Pacts — the developer side, with code
- Pact mechanism — how enforcement is structural, not best-practice