Some agent actions need human approvals for dangerous actions: deploying code, sending money, modifying user accounts. With Restate, your agent can pause execution, wait for an external signal, and resume exactly where it left off, even if the process restarts in the meantime.Documentation Index
Fetch the complete documentation index at: https://docs.restate.dev/llms.txt
Use this file to discover all available pages before exploring further.
How it works
Restate provides durable promises (awakeables) that survive crashes and restarts:- The agent creates a durable promise and gets a unique ID
- The agent sends this ID to whoever needs to approve (Slack, email, dashboard)
- The agent suspends, freeing compute resources (no idle billing on serverless)
- When the approver responds, they resolve the promise via HTTP
- The agent resumes from the exact point it paused
Example: approval tool for an agent
Why this matters for agents
- No idle resources: The agent suspends while waiting. On serverless infrastructure, you pay nothing during the wait.
- Survives restarts: Even if the process or infrastructure changes, the agent resumes when the approval arrives.
- Composable: Combine with tool calls, multi-step workflows, and other patterns. The approval is just another durable step.
