When to Use Human-in-the-Loop
You don’t need to intervene in every task, but some situations call for a human checkpoint:- Sending emails or messages — Outbound communication on your behalf should always be reviewed before it reaches real recipients.
- Executing live trades — Even if your strategy is sound, trade execution in live markets carries financial risk. Always start with paper trading.
- Making purchases — Any transaction involving real money needs human sign-off, even with trusted vendors.
- Publishing to social media — Posts are public and permanent. A review step prevents embarrassing or off-brand content from going live.
- Deleting or overwriting data — Destructive actions on files, databases, or records should require explicit approval.
- Accessing sensitive credentials — If an agent needs to authenticate to a system it hasn’t used before, pause and verify.
Setting Autonomy Level
The Autonomy Level (0–100) is the primary dial for human-in-the-loop control. Lower values mean more checkpoints; higher values mean more freedom.| Range | Mode | What it means |
|---|---|---|
| 0–20 | Copilot | Agent suggests every action and waits for your confirmation before proceeding. |
| 20–50 | Supervised | Agent handles low-risk actions autonomously; pauses and asks for high-risk ones. |
| 50–80 | Autonomous | Agent handles most actions independently; pauses only for critical decisions. |
| 80–100 | Full Auto | Agent executes everything and notifies you after the fact. |
Pausing and Resuming Agents
You can pause any running agent at any time from the War Room — useful when you spot something in the Timeline that needs review, or when you want to redirect the agent before it proceeds.Click Pause on the agent card
In the Agent Fleet Rail, find the agent you want to pause and click the ⏸ Pause button on its card. The agent will complete its current atomic action (finishing a page load, completing a line of code) before stopping cleanly.
Review what the agent is doing
With the agent paused, check the Workspace panel to see its current browser state, the files it has open, and the last few entries in the Timeline. This gives you full context before you decide what to do next.
Send guidance or resume
You have two options:
- Send guidance — type a correction message in the guidance field (see Sending Mid-Task Guidance below) then click Resume.
- Resume directly — click ▶ Resume to let the agent continue exactly where it left off.
Sending Mid-Task Guidance
You can send a plain-language message to a running (or paused) agent at any time. The agent reads your message as high-priority context and incorporates it into its next actions — you don’t have to cancel and restart the task. In the War Room, open the Guide input at the bottom of any agent card, type your message, and press Send. Examples of useful mid-task guidance:- “Focus only on US market data, ignore European sources.”
- “The output format should be a Google Sheets-compatible CSV, not a Markdown table.”
- “Skip the LinkedIn results — we don’t have an account connected.”
- “The competitor you’re researching is Notion, not Notino — please correct the search.”
Guidance is non-destructive — it doesn’t restart the agent or wipe its progress. Think of it as whispering a correction to a colleague mid-meeting.
Approval Gates
When an agent reaches an action that requires human sign-off (based on your autonomy level or the action’s risk category), it pauses and raises an approval request. You’ll see an orange badge on the agent card in the War Room and receive a notification. Each approval request shows:- What the agent wants to do — e.g., “Send this email to 3 recipients”
- The full payload — the email body, recipients, or trade order details so you can review exactly what will happen
- Approve / Deny buttons — approve to proceed, deny with an optional reason to redirect the agent
Browser Takeover
Every agent runs its own browser session you can see live in the Workspace panel. If you want to take direct control — fill in a form yourself, navigate to a specific page, handle a CAPTCHA — you can take over the agent’s browser at any time.Click Takeover in the War Room
While the agent’s browser is visible in the Workspace panel, click the Takeover button in the top-right of the browser viewport. The agent immediately pauses its browser actions and hands control to you.
Complete the action manually
You now control the browser just like a normal tab. Navigate, click, type, upload files — whatever the task requires. The agent watches your actions and updates its context accordingly.
Handling Webhooks for Approvals
For production workflows, you’ll want to respond to approval requests programmatically rather than watching the War Room manually. Register a webhook endpoint to receiveapproval.required events and respond via the API.
Register your webhook:
approval.required event in your server:
Always verify the webhook signature using your
whsec_ secret before processing events. The SDK’s client.webhooks.verify(payload, signature, secret) helper handles this automatically.