Can delegation teach models to manage context more actively?
Does training models to decompose tasks and delegate to subagents—rather than passively compressing when context fills up—improve their ability to reason over long horizons? And does this skill transfer to single-agent work?
SearchSwarm reframes multi-agent delegation as a context-management strategy rather than a coordination convenience. Long-horizon tasks have context demands that grow without bound while the window stays finite. The usual responses are passive: summarize history once a length threshold is crossed, or drop tool outputs by fixed rules. Both wait until the budget is nearly exhausted, then compress indiscriminately. Delegation is the active alternative — a main agent decomposes the task, dispatches subtasks to subagents that execute and return only summarized, citation-grounded results, so the main agent's budget is spent on synthesis rather than raw observation. The hard part the paper isolates is "delegation intelligence": knowing when and what to delegate, briefing subagents comprehensively, and integrating returns into the ongoing workflow — a capability scarce in naturally occurring text, which is why they synthesize training data for it via a harness, then distill that behavior into weights (SearchSwarm-30B-A3B), reaching SOTA at its scale and rivaling models 10× larger on BrowseComp, GAIA, and xbench-DeepSearch.
The most consequential finding is that the delegation skill generalizes to single-agent settings: the structured investigative patterns learned for delegation help even without subagents. That suggests delegation training is partly teaching disciplined decomposition and evidence-grounded integration — transferable reasoning structure, not just an orchestration protocol. It connects to What makes delegation work beyond just splitting tasks?: SearchSwarm operationalizes the "when/what to delegate" judgment that paper argues decomposition alone cannot capture, and it complements What makes agent memory quality better than storage capacity? by making delegation a selective-retention mechanism (the subagent decides what is worth returning).
The caution is that delegation moves the failure point rather than removing it. If subagents return lossy or fabricated summaries, the main agent integrates corruption it can no longer audit — the risk Do frontier LLMs silently corrupt documents in long workflows? documents directly. Citation-grounding is the proposed guardrail, but it only helps if the main agent actually checks the citations rather than trusting the summary. Active context management buys budget; it does not by itself buy fidelity.
Inquiring lines that use this note as a source 4
This note is a source for these synthesized inquiries. Follow a line forward into its question, or open it to trace back to all of its sources.
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
-
What makes delegation work beyond just splitting tasks?
Delegation is more than task decomposition. What dimensions of a task—like verifiability, reversibility, and subjectivity—determine whether an agent can safely and effectively handle it?
extends: operationalizes the when/what-to-delegate judgment beyond mere decomposition
-
What makes agent memory quality better than storage capacity?
If agents need better memory, should we focus on adding storage or improving what gets kept? This explores why curation and selective forgetting matter more than raw capacity for reliable agent performance.
convergent-with: delegation as selective retention, reframing context as a quality problem not a storage one
-
Do frontier LLMs silently corrupt documents in long workflows?
Explores whether advanced language models introduce undetectable errors when delegated multi-step tasks, and whether degradation continues accumulating beyond initial rounds of processing.
contradicts/qualifies: delegated summary-return relays are exactly where silent corruption compounds unaudited
Related papers in this collection 8
Papers most semantically related to this note, ranked by cosine similarity in the embedding space.
- SearchSwarm: Towards Delegation Intelligence in Agentic LLMs for Long-Horizon Deep Research
- Learning Agent-Compatible Context Management for Long-Horizon Tasks
- Agent Workflow Memory
- Intelligent AI Delegation
- LLMs Corrupt Your Documents When You Delegate
- LatentSkill: From In-Context Textual Skills to In-Weight Latent Skills for LLM Agents
- MUSE-Autoskill: Self-Evolving Agents via Skill Creation, Memory, Management, and Evaluation
- Harness Updating Is Not Harness Benefit: Disentangling Evolution Capabilities in Self-Evolving LLM Agents
Original note title
delegation is active context management — dispatching subtasks to subagents that return summaries beats waiting for a context budget to overflow