INQUIRING LINE

If you tune a memory-and-context helper for one AI agent, can you reuse it on another equally capable one?

How much does external context management transfer across similar capability agents?

This explores whether a context manager built or tuned for one agent can be reused with another agent of roughly equal strength, or whether it has to be rebuilt for each agent.


This explores whether a context manager built for one agent can be reused with another agent of roughly equal strength. The corpus has no head-to-head test of that exact case. Several notes do point the same way, though: how well an external manager transfers depends on how reliable the agent is, and matched capability is what makes reuse plausible.

The closest evidence is AdaCoM, which trains an external manager to prune and preserve context for a frozen agent Can an external manager handle context for frozen agents?. Its key result is that the best policy is agent-specific, not task-universal. Stronger agents do better when context is preserved in high fidelity, and weaker ones need aggressive compression. So a manager does not carry over between agents of different strength. The same result suggests it should carry over reasonably well between agents of similar reliability, because reliability is what the manager adapts to. That is an inference from the note, which does not test matched pairs.

A second note shows that 'similar capability' is not a simple dial. In a study of agents updating their own harnesses, the ability to write useful harness edits was flat across model tiers. The ability to benefit from those edits peaked in mid-tier models: weak models failed to invoke the harness at all, and strong models struggled to follow its instructions faithfully Do stronger models always evolve harnesses better?. So outside scaffolding tends to work within a tier and misfire on either side of it, for opposite reasons. The capability that matters is how well an agent uses outside help, not its raw benchmark score.

The skill of managing context seems to transfer better than any particular manager. SearchSwarm trained models to hand subtasks to subagents and integrate their summaries, and that habit carried over from multi-agent to single-agent tasks Can delegation teach models to manage context more actively?. A broader note argues that reliability comes from moving memory, skills, and protocols out of the model and into a harness layer Where does agent reliability actually come from?. That makes the harness a reusable component in principle, but the note frames it as an alternative to scale, not as something portable between models.

Task shape matters as much as agent shape. The best memory granularity shifts with the domain: workflows for routine-heavy tasks, causal rules for environment-heavy ones, and state-action traces for web tasks Does agent memory work better at one level of abstraction?. A manager moved to an equally capable agent can therefore still fail on a different kind of task. Any transfer claim should also be judged on efficiency and trajectory quality, since identical success rates can hide large differences How should we measure agent system performance beyond task success?.

One unplanned example points the other way. Short-lived agents in a 2026 evaluation used a shared package repository as memory, writing findings that later agents read Can ordinary infrastructure become unplanned agent memory?. That shows external context can pass between agent instances, but by accident and not through a tuned manager, so it says nothing about how well such handoffs work.


Sources 7 notes

Can an external manager handle context for frozen agents?

AdaCoM trains an external RL-based manager to prune and preserve context for frozen agents. The key finding: stronger agents benefit from high-fidelity preservation, while weaker agents need aggressive compression—optimal context management is agent-specific, not task-universal.

Do stronger models always evolve harnesses better?

Model capability to produce useful harness edits stays constant across tiers, but capacity to actually benefit from those edits follows an inverted U-shape, peaking in mid-tier models. Weak models fail to invoke harnesses; strong models struggle with faithful instruction-following.

Can delegation teach models to manage context more actively?

SearchSwarm shows that training models to delegate subtasks and integrate summarized results beats passive compression, with a 30B model matching much larger ones. Critically, the delegation skill transfers to single-agent tasks, suggesting it teaches disciplined decomposition and evidence grounding, not just orchestration.

Where does agent reliability actually come from?

Research shows reliable LLM agents externalize three cognitive burdens—memory (state persistence), skills (procedural components), and protocols (structured interaction)—into a harness layer rather than relying on model scale alone. The harness unifies these externalities and eliminates the need for the model to solve the same problems repeatedly.

Does agent memory work better at one level of abstraction?

Workflow-level memory wins in routine-rich domains, causal-rule memory in environment-rich domains, and state-action memory in spatially-rich web tasks. The optimal abstraction depends on whether task variance comes from arguments, causal structure, or fine-grained UI state.

Show all 7 sources
How should we measure agent system performance beyond task success?

Single task-success metrics obscure how agents achieve results across memory, context, and verification layers. Research shows identical success rates can mask enormous differences in efficiency, reliability, and deployment readiness—requiring harness-level benchmarks that measure trajectory, memory hygiene, and verification costs.

Can ordinary infrastructure become unplanned agent memory?

During a 2026 evaluation, short-lived AI agents repurposed a shared package repository as memory by writing and reading exploit findings across agent lifespans. The agents converted ordinary infrastructure into persistent state without deliberate memory system architecture.

Papers this line draws on 8

The research behind the notes this line reads — ranked by how closely each paper relates.