Skip to content
AI.info

Research

WebATLAS: An LLM Agent with Experience-Driven Memory and Action Simulation

Overview Research area: LLM-based autonomous web agents, agentic memory, planning and simulation for sequential decision-making. Technical level: Intermediate — the paper assumes familiarity with LLM

arXiv
2510.22732
Published
2025-10-26
Authors
Jiali Cheng, Anjishnu Kumar, Roshan Lal, Rishi Rajasekaran, Hani Ramezani, Omar Zia Khan, Oleg Rokhlenko, Sunny Chiu-Webster, Gang Hua, Hadi Amiri

AI summary

Overview

  • Research area: LLM-based autonomous web agents, agentic memory, planning and simulation for sequential decision-making.
  • Technical level: Intermediate — the paper assumes familiarity with LLM agents, POMDP framing, actor-critic terminology, and tree search, though the architecture itself is described concretely enough to follow without deep RL background.
  • Scope: The paper introduces WebATLAS, a training-free, modular LLM web agent that combines curiosity-driven cognitive-map memory with look-ahead action simulation, and evaluates it on the WebArena-Lite benchmark.

What This Paper Is About

Web agents driven by large language models tend to be reactive: they pick the next click or keystroke without remembering what failed before or anticipating what a risky action will do. Prior state-of-the-art systems address this by fine-tuning the model on each target website, which is expensive and does not transfer. WebATLAS asks whether an agent can instead adapt to unseen websites at inference time by remembering past interaction outcomes and simulating candidate actions before committing to one in the real environment.

Key Contributions

  1. An actor-critic planner with LLM-based look-ahead. A Planner decomposes a task into subgoals, an Actor proposes N candidate next actions, and a Critic evaluates each candidate by retrieving its predicted consequences and selecting the safest, most goal-advancing one.
  2. A multi-layer memory system. Working Memory holds episode context, a Cognitive Map stores observation-action-observation transitions as agentic summaries, and Semantic Memory stores site-specific rules, formats, and hazards — all updated online and queried on demand.
  3. Curiosity-driven memory construction. Lightweight explorer subagents roam the environment before evaluation, and an LLM mines their trajectories into a cognitive map and world-knowledge store without using any task-completion reward or test-set information.
  4. A practical modular architecture requiring no website-specific fine-tuning. Planning, memory, and simulation are separable components, so the system can be ported to new websites and swapped to different underlying LLMs without retraining.

Main Findings

  • State-of-the-art on WebArena-Lite: WebATLAS reaches 63.0% average success (67.1% excluding multi-site tasks), versus 53.9% for the previous best, Plan-and-Act, and 47.9% for the AgentOccam baseline it builds on.
  • Largest gains on Shopping Admin and Maps: The agent scores 77.1% on Shopping Admin (vs. 48.6% for Plan-and-Act) and 42.3% on Maps, and improves multi-site task performance to 40.0%.
  • Raw HTML memory actively hurts: Adding a cognitive map of unprocessed HTML dropped performance to 44.8% from the 47.9% baseline. Only after agentic summarization — recording deltas and newly available actions instead of full pages — did the cognitive map lift performance to 57.4%.
  • Components are complementary, not redundant: A high-level planner alone gives 50.9%, the summarized cognitive map alone gives 57.4%, and combining them with look-ahead search raises performance to 63.0%, showing each element contributes independently.
  • Simulated rollouts beat LLM guesswork: Because the Critic retrieves real recorded transitions from the cognitive map rather than asking the LLM to imagine outcomes, the look-ahead is grounded in observed environment behavior and avoids hallucinated state predictions.
  • Simulation enables multi-step search without side effects: The agent evaluates D-step action sequences in "conceptual space," which approximates beam search rather than the greedy one-step pruning used by prior systems, and never executes irreversible actions during evaluation.

Methodology in Plain English

The researchers model web navigation as a partially observable decision process: the agent never sees the whole website, only the current page, and must pick actions like clicking or typing to reach a goal.

Before running any tasks, they send lightweight "explorer" agents into the websites with instructions to maximize coverage rather than complete tasks. An LLM then reads those exploration logs and writes two kinds of notes: a cognitive map describing what each action does (for example, "clicking Reports reveals Sales and Products"), and semantic memory capturing site quirks (date formats, irreversible states). Storing summaries rather than raw HTML keeps the agent's context manageable.

At task time, the Planner turns the user's request into a list of subgoals. The Actor proposes several candidate actions for the current step. For each candidate, the Critic asks the cognitive map what would happen next, extends this D steps deep into hypothetical trajectories, and scores each trajectory while discounting it by how uncertain the underlying transitions are. The highest-value trajectory determines the real action. If what the agent actually observes diverges from what the simulation predicted, the Planner replans, and the memory agent decides what new information to retain.

Why This Matters

  • Research impact: The paper argues that adaptation to new environments can happen at inference time through memory and simulation rather than through per-website fine-tuning, which reframes grounding as a retrieval-and-planning problem rather than a training problem.
  • E-commerce automation: Agents that can compare orders, check refund eligibility, and complete purchases while recognizing which steps are irreversible.
  • Enterprise software assistants: Automating repetitive work in GitLab, admin dashboards, and internal portals where workflows and form formats differ from site to site.
  • Accessibility tooling: Voice- or text-driven agents that navigate complex multi-page sites on behalf of users who cannot operate a browser directly.
  • Replacing brittle RPA scripts: Conventional robotic process automation breaks whenever a UI changes, whereas a memory-and-simulation agent can recover from layout drift by re-exploring.
  • Industry relevance: The absence of fine-tuning is the commercially decisive property. Deployments by companies like Amazon — whose Alexa AI group co-authored the work — need agents that can be pointed at a new internal or third-party website and work immediately, with a swappable underlying LLM as models improve.

Future Directions

  • Web-native world models: Move beyond retrieval of recorded transitions toward models that abstract recurring patterns (filters, tables, forms) into reusable sub-programs and support counterfactual "what-if" reasoning.
  • Budget- and safety-aware planning: Treat latency, token cost, and risk as first-class objectives rather than constraints discovered after the fact, using calibrated uncertainty to make those trade-offs explicit.
  • Robustness under stress: Measure behavior under UI drift, authentication flows, stochastic failures, and multi-session tasks, rather than assuming stability on a fixed benchmark.
  • Evaluation beyond pass/fail: Report compute cost, side-effect penalties, reproducibility across random seeds, and transparency of intermediate state so that progress reflects real deployment quality.
  • Open question on generalization: Whether the cognitive map built for one website transfers usefully to structurally similar sites — and how much exploration budget that requires — remains untested.

Target Audience

Researchers and engineers working on LLM agents, web automation, and tool-use systems will get the most from this paper, particularly those evaluating on WebArena or similar web benchmarks. It is also relevant to practitioners building production automation for enterprise portals and e-commerce, who care primarily about the no-fine-tuning property, and to graduate students studying memory architectures, world models, or planning under partial observability. Readers without background in reinforcement learning concepts like actor-critic loops, value functions, and POMDPs will need to consult the cited prior work, but the architecture description in Section 3 stands largely on its own.

Authors’ abstract

Large Language Model (LLM) web agents often struggle with long-horizon web navigation and web task completion in new websites, producing inefficient action sequences unless fine-tuned on environment-specific data. We show that experience-driven memory, combined with look-ahead action simulation, is sufficient for LLM agents to adapt to unseen web environments by remembering past failures and predicting the consequences of future actions. We introduce WebATLAS (Actor-Critic Task-completion with Look-ahead Action Simulation), a memory-augmented LLM web agent that learns a lightweight internal model of the environment from interaction experience and performs hypothetical action rollouts before acting in the real world. WebATLAS builds a persistent cognitive map via curiosity-driven exploration, stores interaction outcomes as experience-based memory, and evaluates candidate actions in cognitive space using a planner--simulator--critic loop. This enables the agent to reuse past experience, avoid previously unsuccessful behaviors, and generate more efficient plans. We evaluate WebATLAS on the WebArena-Lite benchmark for autonomous web navigation and demonstrate a success rate of 63%, outperforming the previous state-of-the-art at 53.9%. Unlike previous systems, our modular architecture requires no website-specific LLM fine-tuning. Ablation studies confirm that experience-driven memory, look-ahead action simulation, and hierarchical replanning play complementary roles in enabling robust, training-free web agents.

Read the original paper