Papers › PatchWorld: Gradient-Free Optimization of Executable World Models for Agent Environments

PatchWorld: Gradient-Free Optimization of Executable World Models for Agent Environments

29 May 2026arXiv:2605.30880added by Syntology

Jiaxin Bai, Yue Guo, Yifei Dong, Jiaxuan Xiong, Tianshi Zheng, Yixia Li, Tianqing Fang, Yufei Li, Yisen Gao, Haoyu Huang, Zhongwei Xie, Hong Ting Tsang, Zihao Wang, Lihui Liu, Jeff Z. Pan, Yangqiu Song

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

World models for interactive text agents must typically be learned from observation-action trajectories alone. Specifically, the environment returns text observations after each action, but does not expose a ground-truth latent state nor an inspectable transition model.A research gap remains in how to induce executable code as a world model in this black-box setting for prediction and agent decision making. We introduce PatchWorld, a gradient-free framework that turns offline trajectories into executable Python world models through counterexample-guided code repair.Instead of predicting the next observation with a black-box model, PatchWorld induces symbolic belief-state programs whose action updates can be inspected, replayed, and locally patched. Across seven AgentGym environments, PatchWorld-Simple achieves the highest code-based decision-making score among evaluated methods (76.4% macro success in live one-step lookahead), matching or exceeding LLM-based lookahead while invoking no LLM calls inside the world-model prediction module itself. We further find that a human-specified residual-memory bias improves surface observation fidelity but weakens agent decision-making utility. This reveals a tradeoff in executable world models, since improving observation fidelity can come at the expense of action-discriminative dynamics, and vice versa. Code is available at https://github.com/HKBU-KnowComp/PatchWorld.

PaperPDFCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2605.30880")

Code

Syntology Ran 6 of 11 code samples harvested from 1 repository linked to this paper; 5 have no recorded run. Of those that ran: 6 ran with no contract checked.

By repository: found in paper text by Syntology: 11 samples from 1 repository, 6 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

HKBU-KnowComp/PatchWorld found in paper text by Syntology report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

11 samples harvested; 6 ran; 0 honoured the contract we drafted; 5 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

6ran
5unverified

Licence: 0 of the 11 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from HKBU-KnowComp/PatchWorld. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

belief_snapshot HKBU-KnowComp/PatchWorld/patchworld/worldmodel_signals.py found in paper text by Syntology ran MIT (permissive) · b2adc0ff6d0a9044 · report
group_by_problem HKBU-KnowComp/PatchWorld/patchworld/worldmodel_data.py found in paper text by Syntology ran MIT (permissive) · 5a91f0e529cfd644 · report
group_by_task_type HKBU-KnowComp/PatchWorld/patchworld/worldmodel_data.py found in paper text by Syntology ran MIT (permissive) · ae92ed406adb1edf · report
load_trajectories HKBU-KnowComp/PatchWorld/patchworld/worldmodel_data.py found in paper text by Syntology ran MIT (permissive) · df272630397f75fe · report
normalize_parsed_observation HKBU-KnowComp/PatchWorld/patchworld/worldmodel_evaluator.py found in paper text by Syntology ran MIT (permissive) · a5b2c75cb8f46df5 · report
render_maze_observation HKBU-KnowComp/PatchWorld/patchworld/worldmodel_base.py found in paper text by Syntology ran MIT (permissive) · 768f4ef0ae8134ce · report
action_actually_failed HKBU-KnowComp/PatchWorld/patchworld/worldmodel_signals.py found in paper text by Syntology unverified MIT (permissive) · 8a70fa041911372d · report
canonicalize_maze_walls HKBU-KnowComp/PatchWorld/patchworld/worldmodel_base.py found in paper text by Syntology unverified MIT (permissive) · bae399b849dec121 · report
coerce_maze_state HKBU-KnowComp/PatchWorld/patchworld/worldmodel_base.py found in paper text by Syntology unverified MIT (permissive) · d75958a67fea5b7e · report
extract_observation_state_fields HKBU-KnowComp/PatchWorld/patchworld/worldmodel_evaluator.py found in paper text by Syntology unverified MIT (permissive) · 8f9a483585663e09 · report
load_model_from_code HKBU-KnowComp/PatchWorld/patchworld/worldmodel_validator.py found in paper text by Syntology unverified MIT (permissive) · e7a2a4869c012316 · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2605.30880, was issued in May 2026, after that date, so the archive has no leaderboard rows for it.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections