Imagine you're writing a long essay and halfway through you realize paragraph three contains a wrong assumption. You have two choices: keep writing and hope it doesn't matter, or go back and rewrite paragraph three so every subsequent paragraph builds on solid ground. Most LLM agent world models have been doing the equivalent of predicting what your spell-checker will say next — simulating environment responses that you could just... run the tool and get for real. This paper says: stop predicting the environment, start editing the agent. The committed claim: a world model should model how the agent's reasoning and actions shape future task progress, not reconstruct high-entropy tool responses. The authors introduce the Agent-Editing World Model (AEWM), which combines an Action Judge — classifying each step as Critical, Exploratory, or Noisy — with a State Revision module that rewrites noisy reasoning-action sequences from the same observed history. The integration mechanism, EditAct, splices these revised continuations into the live execution trace, directly altering the state that subsequent decisions see. This is not a critic that says 'you messed up'; it's a scalpel that excises the contaminated tissue. The ladder is clearly drawn. On their custom Action Judge benchmark, AEWM hits 70.5% macro-F1, beating the strongest frontier baseline by 10.6 points. Across six benchmarks spanning Search, Terminal, and Software Engineering tasks with three different agent backbones, EditAct lifts average scores by 3.2-6.7 points over the strongest baseline. These are consistent, cross-domain improvements — not a cherry-picked single-benchmark spike. The AEWM-RFT variant (rejection sampling fine-tuning on verified EditAct trajectories) beats Self-RFT by 2.2-2.6 points across three domains without needing online AEWM guidance at inference time. Architecturally, AEWM belongs to the supervised fine-tuning family applied to language world models, using mid-training plus SFT on LLM backbones. The key structural bet is that action classification (a discriminative task) and state revision (a generative editing task) should be jointly trained within one model rather than handled by separate modules. The method leans on the availability of verified execution traces — you need real tool outputs to judge which actions were noisy, which limits applicability to environments where execution is cheap. The integrity picture is mixed. The authors built their own Action Judge benchmark — so they're partly grading their own homework. The six downstream benchmarks appear to be community-standard tasks (Search, Terminal, SWE), which adds credibility, but the paper doesn't mention pre-registration or independent replication. The 3-backbone evaluation (testing across different agent architectures) is a genuine stress test that many papers skip. Code availability is not confirmed from the abstract alone. The comparison to 'strongest frontier baseline' is asserted but the specific names and numbers of those baselines aren't fully enumerated in the abstract. The milestone question is about scale and generalization. Today: 3-7 point lifts on six benchmarks across three domains. The next unlock would be demonstrating AEWM on truly open-ended, long-horizon tasks — the kind where task-state contamination is catastrophic rather than merely costly. Think multi-day coding projects or research-agent loops with hundreds of tool calls. If the editing mechanism holds at that scale, it becomes infrastructure; if it degrades, the contamination problem reasserts itself. The obvious experiment not run: applying AEWM to multi-agent settings where one agent's noisy reasoning contaminates the shared state visible to other agents. The authors likely constrained scope to single-agent domains to keep the paper clean and publishable — the multi-agent case introduces attribution problems (whose noise gets edited?) that would have doubled the paper's complexity. This is almost certainly being saved for the next paper, not a failure to run.