PREPING: Building Agent Memory without Tasks
Summary
Presents PREPING, a framework for constructing agent memory before any task-specific experience using proposer-guided synthetic practice, achieving competitive performance with reduced deployment costs.
View Cached Full Text
Cached at: 05/15/26, 04:23 AM
Paper page - PREPING: Building Agent Memory without Tasks
Source: https://huggingface.co/papers/2605.13880
Abstract
Preping is a framework for pre-task memory construction that uses proposer-guided synthetic practice to improve agent performance in new environments with reduced deployment costs.
Agent memoryis typically constructed either offline from curated demonstrations or online from post-deployment interactions. However, regardless of how it is built, an agent faces acold-start gapwhen first introduced to a new environment without any task-specific experience available. In this paper, we studypre-task memoryconstruction: whether an agent can buildprocedural memorybefore observing any target-environment tasks, using only self-generatedsynthetic practice. Yet, synthetic interaction alone is insufficient, as without controlling what to practice and what to store, synthetic tasks become redundant, infeasible, and ultimately uninformative, and memory further degrades quickly due to unfiltered trajectories. To overcome this, we present Preping, aproposer-guided memory constructionframework. At its core isproposer memory, a structured control state that shapes future practice. A Proposer generates synthetic tasks conditioned on this state, aSolverexecutes them, and aValidatordetermines which trajectories are eligible for memory insertion while also providing feedback to guide future proposals. Experiments on AppWorld, BFCL v3, and MCP-Universe show that Preping substantially improves over a no-memory baseline and achieves performance competitive with strong playbook-based methods built from offline or online experience, with deployment cost 2.99times lower on AppWorld and 2.23times lower on BFCL v3 than onlinememory construction. Further analyses reveal that the main benefit does not come from synthetic volume alone, but from proposer-side control over feasibility, redundancy, and coverage, combined with selective memory updates.
View arXiv pageView PDFProject pageGitHub0Add to collection
Get this paper in your agent:
hf papers read 2605\.13880
Don’t have the latest CLI?curl \-LsSf https://hf\.co/cli/install\.sh \| bash
Models citing this paper0
No model linking this paper
Cite arxiv.org/abs/2605.13880 in a model README.md to link it from this page.
Datasets citing this paper0
No dataset linking this paper
Cite arxiv.org/abs/2605.13880 in a dataset README.md to link it from this page.
Spaces citing this paper0
No Space linking this paper
Cite arxiv.org/abs/2605.13880 in a Space README.md to link it from this page.
Collections including this paper0
No Collection including this paper
Add this paper to acollectionto link it from this page.
Similar Articles
Self-Improving Memory for Agents (6 minute read)
Perplexity Brain is a memory system that builds a persistent context graph across tasks, projects, decisions, files, and sources, enabling agents to start with relevant context instead of from scratch, improving answer correctness and reducing task costs.
Tired of onboarding your agent every session? Building a memory system to fix the problem? Here's a guide to some things you should be thinking about when designing your system.
An exploration of how AI agent memory systems often miss crucial cognitive processes like working memory, drawing parallels to anterograde amnesia, and offering design guidance for more effective solutions.
For those creating personal assistants locally - how has short/long term memory impacted your experience?
A developer shares their experience building a local autonomous agent with long-term and short-term memory using Qwen 3.6 27B, noting that memory dramatically improves the agent's usefulness and realism. They invite others building similar agents to discuss memory techniques and potential agentic meetups.
Anticipate and Learn: Unleashing Idle-Time Compute in Proactive Agents
ProAct is a proactive agent architecture that leverages idle-time computation to anticipate user needs, improving task completion efficiency and accuracy. It introduces ProActEval, a benchmark spanning 200 scenarios across 40 domains, and achieves significant gains over reactive baselines: 14.8% reduction in required turns, 11.7% decrease in user effort, and 28.1% cut in hallucination rates.
Agent Memory: An Anatomy
An exploration of the components and design decisions behind agent memory libraries, clarifying the gap between cognitive science terminology and engineering implementation.