Skip to main content

Experience Transfer for Multimodal LLM Agents in Minecraft Game

AuthorsChenghao Li et al.
Year2026
HF Upvotes13
arXiv2604.05533
PDFDownload
HF PageView on Hugging Face

Abstract

Multimodal LLM agents operating in complex game environments must continually reuse past experience to solve new tasks efficiently. In this work, we propose Echo, a transfer-oriented memory framework that enables agents to derive actionable knowledge from prior interactions rather than treating memory as a passive repository of static records. To make transfer explicit, Echo decomposes reusable knowledge into five dimensions: structure, attribute, process, function, and interaction. This formulation allows the agent to identify recurring patterns shared across different tasks and infer what prior experience remains applicable in new situations. Building on this formulation, Echo leverages In-Context Analogy Learning (ICAL) to retrieve relevant experiences and adapt them to unseen tasks through contextual examples. Experiments in Minecraft show that, under a from-scratch learning setting, Echo achieves a 1.3x to 1.7x speed-up on object-unlocking tasks. Moreover, Echo exhibits a burst-like chain-unlocking phenomenon, rapidly unlocking multiple similar items within a short time interval after acquiring transferable experience. These results suggest that experience transfer is a promising direction for improving the efficiency and adaptability of multimodal LLM agents in complex interactive environments.


Engineering Breakdown

Plain English

Echo is a memory framework that helps multimodal LLM agents in complex game environments like Minecraft reuse past experiences to solve new tasks more efficiently. The paper identifies a critical problem: existing memory systems treat past interactions as static records rather than actionable knowledge. The authors decompose reusable knowledge into five dimensions (structure, attribute, process, function, and interaction) and use In-Context Analogy Learning (ICAL) to retrieve and adapt relevant prior experiences to unseen tasks. This approach enables agents to recognize recurring patterns across different tasks and understand which prior knowledge transfers to new situations.

Core Technical Contribution

The core novelty is Echo's five-dimensional knowledge decomposition framework that makes experience transfer explicit and systematic rather than implicit. Unlike prior memory approaches that store raw trajectories or embeddings, Echo structures knowledge along semantic dimensions that enable cross-task pattern matching and analogical reasoning. The second key contribution is In-Context Analogy Learning (ICAL), which retrieves semantically similar past experiences and adapts them in-context (via the LLM's own inference) without requiring gradient updates or fine-tuning. This combination allows agents to generalize from small numbers of demonstrations by leveraging structural similarities between tasks rather than memorizing task-specific solutions.

How It Works

The system operates in three stages: knowledge decomposition, experience retrieval, and in-context adaptation. During decomposition, Echo analyzes each past interaction and extracts five knowledge dimensions—structure (spatial/logical layout), attribute (object properties), process (sequential steps), function (goal-oriented behavior), and interaction (agent-environment dynamics). When facing a new task, the agent queries a retrieval module that matches the current situation against stored experience using these five dimensions, scoring compatibility across each semantic axis. Retrieved experiences are then fed into the LLM's context window as in-context examples, allowing the model to perform analogical reasoning and adapt prior solutions to the new task without explicit fine-tuning—the LLM sees 'here's what worked before in a similar structure, here's how to adjust it.'

Production Impact

For teams building game-playing agents or embodied AI systems, Echo directly addresses the challenge of sample efficiency in complex environments. Instead of requiring thousands of task-specific demonstrations, agents can reuse knowledge from related tasks through structured analogy, reducing both data collection costs and training time. The in-context learning approach is particularly valuable because it requires no parameter updates—you can add new experiences to the memory and immediately leverage them without retraining, making the system highly adaptable to evolving task distributions. However, the five-dimensional decomposition requires careful design and possibly manual annotation for complex domains, adding engineering overhead upfront. The approach scales memory usage linearly with experience count, which could become problematic at very large replay buffer sizes, though the structured retrieval (not full retrieval-augmented generation) keeps latency manageable.

Limitations and When Not to Use This

The paper assumes that tasks share meaningful structural, process, and interaction patterns—this breaks down in highly novel environments where prior experience provides little guidance, limiting transfer to task families with sufficient similarity. The five-dimensional decomposition framework is hand-designed and may not capture the most relevant knowledge dimensions for all domain types; discovering optimal decompositions for new domains requires domain expertise or additional research. The approach depends on effective in-context learning by the underlying LLM, which has known limitations with complex analogies or very long context windows; agents with weaker base models may not perform the analogical reasoning the framework assumes. The paper does not thoroughly evaluate computational costs of retrieval and in-context inference at scale, nor does it compare against simpler baseline transfer methods (e.g., fine-tuning on related tasks), leaving questions about whether the complexity is justified across different data regimes.

Research Context

This work builds on the intersection of memory-augmented learning, few-shot in-context learning, and transfer learning in embodied AI. It extends prior research on prompt-based learning and retrieval-augmented generation by adding explicit semantic structure to memory, rather than using simple embedding-based retrieval. The paper advances the broader trend of using LLMs as reasoning engines for agent decision-making in complex simulators like Minecraft, where multi-step planning and environment understanding are critical. Echo opens research directions in automatic knowledge decomposition discovery, multi-agent experience sharing, and scaling transfer learning to long-horizon, open-ended tasks—all critical for building more general embodied agents.


:::tip Subscribe Get weekly breakdowns of papers like this in AI Letters - the newsletter for engineers building production AI systems. :::


Back to Research Lab → · Subscribe to AI Letters →

© 2026 EngineersOfAI. All rights reserved.