Do self-improving agents really split into two distinct loops?
Explores whether modern self-improving agents can be understood through a clean abstraction separating fast scaffold updates from slow model weight updates, and whether this framework actually explains the field's recent progress.
A survey of modern self-improving agents offers a clean systems abstraction: an agent is a configuration coupling a foundation model with an operational scaffold — prompts, memory, tools, and control logic — and self-improvement is a self-induced update operator that obtains and commits updates to either the model parameters or the scaffold components. That single distinction organizes the whole field, because it separates what changes from how fast it can change. Foundation-model improvement is the parametric, slower loop (driven by intrinsic generative demonstrations, intrinsic evaluative feedback, or extrinsic exploratory experience). Scaffolding improvement is the non-parametric, faster loop (updating prompts, memory, tools, or the full scaffold).
The value of the framing is that it makes the design space legible rather than a pile of named systems. It also explains why so much recent progress lives in the fast loop: updating a memory store or a prompt is cheap and reversible, while updating weights is expensive and risky. This is the same two-timescale structure surfaced empirically in Can agents adapt without pausing service to users? — but generalized from one system to a taxonomy. Which means the survey's real contribution is a shift of the object of study: the goal is no longer the static agent but the mechanism driving its evolution — the update operator itself and the signals that trigger it. Any concrete self-improvement design can be located by asking which loop it modifies and what signal drives the commit.
Inquiring lines that read this note 13
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.
How does objective evolution guide discovery better than fixed planning?- How does compiling natural language goals into executable code enable objective evolution?
- Can AI systems generate and refine their own objective functions?
- How would a bi-level agent restructure objective functions during discovery?
- What stops evolved agent behaviors from generalizing beyond specific tasks?
- Why do self-improving agents concentrate progress in the fast non-parametric loop?
- Can self-improving agents become truly autonomous without intrinsic metacognition?
Related concepts in this collection 3
This note in its neighbourhood — explore the map, then jump to a related concept in the list below.
Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph
-
Can agents adapt without pausing service to users?
Can deployed LLM agents continuously improve their capabilities while serving users without interruption? This explores whether fast behavioral updates and slow policy learning can coexist across different timescales.
the empirical instance of the survey's slow-parametric / fast-non-parametric split
-
How can agent self-evolution be made safe and auditable?
As agents begin updating their own prompts and tools, how can we track these changes, measure their effects, and safely reverse problematic updates? This matters because untracked evolution leads to unmaintainable systems and makes regressions impossible to diagnose.
governs the fast non-parametric loop the survey identifies
-
Can AI systems improve their own learning strategies?
Current self-improvement relies on fixed human-designed loops that break when tasks change. The question is whether agents can develop their own adaptive metacognitive processes instead of depending on human intervention.
locates the missing signal that would make either loop autonomous
Related papers in this collection 8
Papers most semantically related to this note, ranked by cosine similarity in the embedding space.
- Self-Improvements in Modern Agentic Systems: A Survey
- Hyperagents
- The Red Queen Gödel Machine: Co-Evolving Agents and Their Evaluators
- Drop the Hierarchy and Roles: How Self-Organizing LLM Agents Outperform Designed Structures
- Harness Updating Is Not Harness Benefit: Disentangling Evolution Capabilities in Self-Evolving LLM Agents
- Darwin Godel Machine: Open-Ended Evolution of Self-Improving Agents
- Large Language Model Agents Are Not Always Faithful Self-Evolvers
- Adaptation of Agentic AI
Original note title
modern self-improving agents divide into a slow parametric loop that updates model weights and a fast non-parametric loop that updates the scaffold of prompts memory and tools