Replies: 4 comments 2 replies
-
|
The only way i discovered so far is to spam "Stop Stop Stop" in the chat. One more annoying thing with Agent zero |
Beta Was this translation helpful? Give feedback.
-
|
i know this is an old entry but just in case it helps someone later: i have found that entering "cancel" usually gets the agent to stop work without losing progress on the topic. Hope this helps someone sometime. |
Beta Was this translation helpful? Give feedback.
-
|
there is a pause button under the text box |
Beta Was this translation helpful? Give feedback.
-
|
The "going haywire" problem is a fundamental agent control issue — and the fact that stopping it means losing progress makes it a genuinely hard tradeoff. A few mechanisms that help separate "emergency stop" from "graceful pause": Budget circuit breaker — a hard spending ceiling that the agent itself cannot override. When the agent approaches its budget ceiling, it pauses execution and waits for human approval before continuing. This catches "going haywire" in the most common case (runaway loop spending money) before it becomes unrecoverable. Checkpoint at each sub-task boundary — before the agent starts a new sub-task, it serializes its current state (instructions received, progress made, entities discovered, plan remaining) to durable storage. You can then stop the agent at any sub-task boundary and resume from the last checkpoint without losing progress. Execution intent log — instead of stopping the agent's process, pause it and show a log of "what the agent was about to do next." This lets you review and selectively resume: approve step N, reject step N+1, continue from step N+2. Monotonic narrowing on restart — if you're resuming a stopped agent, you can restart it with a strictly narrower capability set (no write access, no API calls, read-only) to safely inspect its state before re-granting execution capabilities. We built these primitives into KinthAI's agent execution layer — the economic controls and governance design is here: https://blog.kinthai.ai/agent-wallet-economic-models-autonomous-agents What's the typical failure mode when a0 "goes haywire" — infinite tool call loop, or drifting away from the original goal? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I instruct a0 to stop all tasks, it confirms and then proceeds to isntruct all its subordinates to resume their tasks :-/ Any hints are welcome.
Please excuse the typos in the screenshot.
Beta Was this translation helpful? Give feedback.
All reactions