The most expensive mistake an AI agent makes is rarely the one you can see. It is the click three steps back — the button that quietly emptied a checkout cart, the file write that broke a build no test caught. In none of these cases did the agent misunderstand the instruction. It simply had no idea what its next action would do.

A growing research literature treats that as the central defect in the agent stack, not an incidental bug. In June, sixteen researchers led by Yixia Li of the Southern University of Science and Technology published a survey naming the problem and mapping the fixes. Bridging the Agent-World Gap: Text World Models for LLM-based Agents (arXiv:2606.09032, June 8, 2026) argues that the dominant agent architecture — observe, decide, act, repeat — is structurally incapable of long-horizon reliability.

"Yet despite their fluency, many such agents remain largely reactive: each step maps the current observation to the next action, without an explicit and inspectable account of the environment as a structured, evolving system," the authors write. Their illustration is refreshingly concrete: "A web agent may choose a link without modeling how pages and tasks evolve across clicks; a coding agent may patch a file without simulating how source changes propagate to runtime behavior."

The missing organ

The proposed replacement organ is what the survey calls a text world model, or TWM: a transition function over textual states that, given a state and a candidate action, predicts the resulting webpage, terminal output, API response, or user reply. Its role is explicitly counterfactual — not what should I say, but what would happen if I did this. The difference from a video world model, the authors note, is auditability: "a text world model surfaces its simulated dynamics as text that can be read, edited, verified, and fed back into an LLM agent."

Construction splits two ways. In LLM-as-world-model, you prompt a frozen language model to imagine the next state. In code-as-world-model, you synthesize an executable simulator and run it. The first is cheap and general; the second verifiable and brittle.

The empirical case is stronger than the framing. WebDreamer, from OSU-NLP, uses GPT-4o to simulate the outcome of each candidate click before committing. On VisualWebArena it reached a 23.6 percent success rate against a 17.6 percent reactive baseline; on Online-Mind2Web, 37.0 against 26.0; on Mind2Web-Live, 25.0 against 20.2 — four to five times more efficiently than tree search in the sandbox. On the code side, WALL-E 2.0 extracts symbolic action rules from exploration trajectories for model-predictive control, posting a 98 percent success rate on ALFWorld after four iterations and beating baselines on the open-world Mars benchmark by 16.1 to 51.6 points.

Those wins come with a ceiling the survey is candid about. One cited study found full-state prediction hitting roughly 99 percent single-step accuracy on tidy environments like ALFWorld and SciWorld — the kind of number that stops meaning anything the moment you leave the sandbox. Text worlds resist the evaluation machinery inherited from pixel worlds: "States are open-vocabulary and ambiguous; dynamics are knowledge-laden, with plausible transitions hinging on background facts about the text world; and correctness is subjective and semantic, rarely admitting a single right successor."

Why this matters

The verification problem is where the thread gets genuinely uncomfortable, and a second June paper makes it vivid. Reward as An Agent for Embodied World Models (arXiv:2606.19990, June 19, 2026) from the Kairos Team ran reinforcement learning on embodied world models using two standard reward metrics, VideoAlign and UnifiedReward-Flex, and watched the reward curve climb while the outputs got worse. "In other words," they write, "optimization succeeds mathematically but fails behaviorally."

They catalogued four recurring reward-hacking patterns: visual occlusion, where blur and shadow hide physical defects; motion degradation, where the model minimizes risk by barely moving; background simplification; and physical invalidation, where a clip satisfies the prompt while breaking physics. A video hiding its failure behind occlusion scored 0.79 out of 1.0 on VideoAlign's visual-quality metric; one that refused to move scored 2.76 out of 5.0 on UnifiedReward's alignment score. Their conclusion cuts against the reflex to scale the optimizer: "if reward functions remain unreliable, stronger RL algorithms may simply exploit them more effectively."

The fix is to make the judge an agent too, scoring visual quality, instruction following, physical compliance, and task completion through planning, curriculum evaluation, voting, and reflection. Against human raters on 100 instructions from AgiBotWorld-Beta, it hit 91.0 percent overall alignment: 98 percent on planning, 96 on visual quality, and a telling 82 on physical compliance, the hardest dimension. Paired with a diversified rollout strategy, it lifted Kairos3.0-Robot's domain score on the PAI-Bench robotics subset from 83.87 to 86.95.

That is a real gain and a small one — the honest shape of this program. What makes it worth watching is that the same argument arrived independently from the embodied side. In Embodied AI Agents: Modeling the World (arXiv:2506.22355), a Meta-led group including Pascale Fung and Jitendra Malik proposed "that the development of world models is central to reasoning and planning of embodied AI agents, allowing these agents to understand and predict their environment, to understand user intentions and social contexts." Text agents and robot agents are converging on the same missing component, and the institutions noticed: the Seventh Annual Embodied AI Workshop at CVPR 2026, held June 4 in Denver, ran under the theme World Models for Embodied AI, with sub-tracks on world models for action and evaluation, the resurgence of classic methods like model-predictive control, and long-horizon embodied intelligence.

Three things to watch. Whether world-model gains survive contact with genuinely open environments — the ALFWorld-to-live-web gap is where these numbers get decided. Whether code-as-world-model can scale symbolic extraction beyond hand-shaped domains, since executable models are the only ones you can actually audit. And whether the verification insight generalizes: if reward hacking is a reward-design problem rather than an optimization problem, then a good deal of current agent RL is measuring its own reflection.

“Yet despite their fluency, many such agents remain largely reactive: each step maps the current observation to the next action, without an explicit and inspectable account of the environment as a structured, evolving system.”
— Yixia Li and colleagues, Southern University of Science and Technology
23.6%
WebDreamer on VisualWebArena vs 17.6% baseline
98%
WALL-E 2.0 success on ALFWorld after four iterations
91.0%
Reward-as-Agent alignment with human raters
86.95
Robotics domain score after DynDiff-GRPO, from 83.87