MonoScale: Scaling Multi-Agent System with Monotonic Improvement
Summary
MonoScale is a novel framework designed to prevent performance collapse in LLM-based multi-agent systems (MAS) when new, heterogeneous agents are continuously integrated. It addresses the router's "cold start" problem by proactively generating a small set of agent-conditioned familiarization tasks. The system harvests evidence from both successful and failed interactions, distilling it into auditable natural-language memory to guide future routing decisions. Formalized as a contextual bandit, MonoScale employs trust-region memory updates, guaranteeing monotonic non-decreasing performance across onboarding rounds. Experiments on GAIA and Humanity's Last Exam (HLE) benchmarks demonstrate stable gains as the agent pool grows from 3 to 10 agents. A Qwen-3-30B-A3B-Instruct router with MonoScale achieved 55.15% accuracy on GAIA and 19.90% on HLE, outperforming naive scale-up and competitive with strong baselines like GPT-5 and Gemini-3-Pro, even in noisy agent environments.
Key takeaway
For AI Engineers building evolving multi-agent systems, integrating new agents demands a structured onboarding process. You should implement agent-conditioned warm-up tasks and memory-based router updates to prevent performance degradation. This approach ensures stable capability growth and robustness, even when dealing with unreliable agents or expanding agent pools, allowing your systems to scale reliably.
Key insights
Monotonic performance scaling in multi-agent systems requires proactive agent familiarization and memory-guided router updates.
Principles
- Naive MAS expansion causes performance collapse.
- Router cold-start requires execution-grounded knowledge.
- Trust-region memory updates ensure monotonic gains.
Method
Synthesize agent-conditioned warm-up tasks, collect success/failure traces, distill evidence into auditable natural-language memory, and apply trust-region policy optimization.
In practice
- Generate ~50 warm-up tasks per new agent.
- Distill positive and negative routing principles.
- Implement conservative fallback for new agents.
Topics
- Multi-Agent Systems
- LLM Routing
- Agent Onboarding
- Performance Scaling
- Contextual Bandits
- Trust-Region Optimization
- GAIA Benchmark
Best for: Research Scientist, AI Architect, AI Scientist, Machine Learning Engineer, AI Engineer
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by cs.MA updates on arXiv.org.