SYNTHESIS NOTE
TopicsAgentsthis note

Can agents learn new skills without forgetting old ones?

Explores whether externalized skill libraries—storing learned behaviors as retrievable code rather than parameter updates—can solve the catastrophic forgetting problem that plagues continual learning systems.

Synthesis note · 2026-02-23 · sourced from Agents

VOYAGER introduces an architecture for lifelong learning that solves the catastrophic forgetting problem through externalization rather than internal parameter management. Three components work together:

  1. Automatic curriculum — proposes tasks based on the agent's current skill level and world state (finding yourself in a desert means harvesting sand before iron). Generated by GPT-4 with the overarching goal of "discovering as many diverse things as possible" — an in-context form of novelty search.

  2. Ever-growing skill library — each successfully completed task produces an executable code program stored in the library, indexed by the embedding of its description. When similar situations arise, relevant skills are retrieved by semantic similarity. This externalizes learned behavior as retrievable artifacts rather than weight updates.

  3. Iterative prompting with environment feedback — incorporates execution errors, environment feedback, and self-verification for program improvement. The agent refines skills based on real-world outcomes.

The compounding mechanism is the key insight: complex skills are synthesized by composing simpler programs. Fighting zombies builds on combat primitives; navigating a cave builds on movement and resource-gathering skills. This composition enables rapid capability growth without the forgetting that plagues weight-update-based continual learning methods.

Three lifelong learning requirements are met: (1) propose suitable tasks based on current capability and context, (2) refine skills from environmental feedback and commit to memory, (3) continually explore in a self-driven manner. These parallel the three requirements of the When should proactive agents push toward their goals versus accommodate users? framework — goal awareness, context adaptation, and initiative.

Because Can agents learn from failure without updating their weights?, VOYAGER's skill library is a more structured version of the same principle: externalize learning as retrievable artifacts. The embedding-indexed retrieval means skills are found by semantic similarity, not exact match — enabling transfer to novel but related situations.

Since Can communication pressure drive agents to learn shared abstractions?, the skill library pattern may generalize: agents under performance pressure naturally develop reusable, composable abstractions.


MUSE-Autoskill generalizes Voyager's compounding library into an explicit five-stage skill lifecycle — creation, memory, management, evaluation, refinement — turning skills from disposable generation outputs into "long-lived, experience-aware, testable assets." Two extensions matter for the catastrophic-forgetting claim. First, skills are validated through unit tests plus runtime feedback, so the library does not just grow but is continuously checked for reliability — addressing the gap where Voyager stores any successfully-executed program regardless of later robustness. Second, MUSE adds skill-level memory that accumulates per-skill experience across tasks, so reuse improves over time rather than staying static after first synthesis. On SkillsBench, generated skills reach 87.94% on their tasks and transfer to other agents with minimal accuracy loss, evidence that lifecycle management (not just synthesis) is what makes externalized skills durable infrastructure.

Inquiring lines that read this note 138

This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.

What determines success in training models on multiple tasks? What memory abstraction level best enables agent knowledge reuse? How can AI agents autonomously learn and transfer skills across tasks? What memory architectures best support persistent reasoning across extended interactions? How should agents balance memory condensation to optimize context efficiency? How do multi-agent systems achieve genuine cooperation and reasoning? Why do continual learning scenarios trigger catastrophic forgetting and interference? Does self-reflection enable models to reliably correct their errors? How should memory consolidation strategies shape agent performance over time? How does AI adoption affect human skill development and labor equality? How does objective evolution guide discovery better than fixed planning? Does externalizing cognitive work and state improve agent reliability? How can conversational AI maintain consistent personas across conversations? How can models identify insufficient information and respond appropriately without guessing? Why does finetuning cause catastrophic forgetting of model capabilities? Why do agents confidently report success despite actually failing tasks? How do standardized protocols improve coordination in multi-agent systems? What pretraining choices and baseline capability constrain reinforcement learning gains? How should systems govern persistent agent-generated code in shared infrastructure? Why does consolidated memory sometimes degrade agent performance? What drives capability and cost efficiency in agent systems? How do self-generated feedback mechanisms enable effective model learning? How do training data properties shape reasoning capability development? Why do reward structures fail to shape long-term agent learning? How should conversational agents balance goal-driven initiative with user control? Why does verification consistently lag behind AI generation? Can AI systems balance emotional competence with factual reliability? How do we evaluate AI systems when user perception misleads actual performance? Can alternative training methods improve on supervised fine-tuning for language models? What causes silent corruption to amplify through delegated workflows? Do base models contain latent reasoning that training can unlock? How do training priors constrain what context information can override? Why do self-improving systems struggle without clear external performance metrics? How do prompt structure and constraints affect model instruction reliability? Does reinforcement learning teach reasoning or just when to reason? Do harness improvements transfer across model scales or memorize shortcuts?

Related concepts in this collection 10

This note in its neighbourhood — explore the map, then jump to a related concept in the list below.

Concept map
24 direct connections · 173 in 2-hop network ·medium cluster Open in graph ↗

Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph

your link semantically near linked from elsewhere

Related papers in this collection 8

Papers most semantically related to this note, ranked by cosine similarity in the embedding space.

Original note title

compositional skill libraries that compound through synthesis enable lifelong learning without catastrophic forgetting