When an AI agent gets stuck on a bad idea arXiv:2609.28416 Scripted podcast dialogue; AI-generated voices. HOST: Picture an AI assistant trying to work out why an app will not start. It spots an authentication error and blames the API key. A test shows the key works, yet the assistant still wants to regenerate it. Have you seen an agent cling to its first theory like that? GUEST: Yes, and that is the problem this paper starts with. The authors call it task-state contamination: an early assumption enters the task history and shapes later decisions even after contrary evidence appears. The first mistake is only part of the trouble. It becomes the lens through which the agent reads everything else. HOST: The title mentions a world model. I imagine something that predicts what the world will do: search the web and guess the search results. Is this different? GUEST: Quite different. If an agent can actually use a browser or terminal, there is little value in guessing the tool's reply. AEWM examines the proposed decision before execution: given the history, reasoning and action, will this step advance the task? The focus is the agent's trajectory rather than a simulation of every environment response. HOST: But real research needs exploration. How does it avoid treating every detour as wasted time? GUEST: Its Action Judge uses three labels. Critical means directly necessary. Exploratory means it reduces a genuine uncertainty without necessarily solving the task immediately. Noisy means a repeated, irrelevant or unsupported move. Reading the failing service's log may be exploratory or critical. Regenerating a key that has already been checked is probably noisy. HOST: If it spots a noisy move, does it just flash a warning? GUEST: It goes further. State Revision proposes new reasoning and an action from the same observed history. EditAct then runs the chosen action in the real tool and records what actually happened, changing the history the agent will use next. The authors also test AEWM-RFT: training on verified, corrected trajectories so that an agent can later work without the online supervisor. HOST: Do the results support the idea? GUEST: Their benchmark contains three thousand decisions across search, terminal use and software engineering. The judge reaches 70.5 per cent macro-F1, 10.6 points above the strongest comparison reported. In the agent loop, average scores across six benchmarks rise by 3.2 to 6.7 points, depending on agent size. Those are results in the paper's tests, not a promise for every agent. HOST: Where would you try it, cautiously? GUEST: Long research, debugging and automation tasks, especially when new evidence conflicts with the plan. But the judge can make mistakes too: it might block useful exploration or replace it with a worse choice. Checking every step also adds cost. The practical question is: before acting on an old assumption, what evidence still supports it?