Papers
Topics
Authors
Recent
Search
2000 character limit reached

From Multi-Agent to Single-Agent: When Is Skill Distillation Beneficial?

Published 2 Apr 2026 in cs.AI | (2604.01608v1)

Abstract: Multi-agent systems (MAS) tackle complex tasks by distributing expertise, though this often comes at the cost of heavy coordination overhead, context fragmentation, and brittle phase ordering. Distilling a MAS into a single-agent skill can bypass these costs, but this conversion lacks a principled answer for when and what to distill. Instead, the empirical outcome is surprisingly inconsistent: skill lift ranges from a 28% improvement to a 2% degradation across metrics of the exact same task. In this work, we reveal that skill utility is governed not by the task, but by the evaluation metric. We introduce Metric Freedom ($F$), the first a priori predictor of skill utility. $F$ measures the topological rigidity of a metric's scoring landscape by quantifying how output diversity couples with score variance via a Mantel test. Guided by $F$, we propose a two-stage adaptive distillation framework. Stage 1 acts as a selective extraction mechanism, extracting tools and knowledge while discarding restrictive structures on "free" metrics to preserve exploration. Stage 2 targets computationally intensive iterative refinement exclusively toward "rigid" metrics ($F \lesssim 0.6$) to eliminate trajectory-local overfitting. Evaluating across 4 tasks, 11 datasets, and 6 metrics, $F$ strongly predicts skill utility ($ρ= -0.62$, $p < 0.05$). Strikingly, identical agent trajectories yield diametrically opposite skill lifts under rigid versus free metrics, demonstrating that skill utility is fundamentally a metric-level property. Driven by this signal, our adaptive agent matches or exceeds the original MAS while reducing cost up to 8$\times$ and latency by up to 15$\times$.

Summary

  • The paper introduces ‘Metric Freedom’ (F) to predict when multi-agent to single-agent distillation improves performance.
  • It proposes an adaptive two-stage framework that adjusts skill extraction based on metric rigidity, achieving 1.4–8× cost and up to 15× latency reductions.
  • Empirical results on tasks like Causal Estimation and Discovery demonstrate that rigid, low-F metrics benefit most from structured skill distillation.

Skill Distillation in Multi-Agent Systems: A Metric-Centric Framework

Introduction

The paper "From Multi-Agent to Single-Agent: When Is Skill Distillation Beneficial?" (2604.01608) presents a rigorous investigation into the conditions under which distilling Multi-Agent System (MAS) expertise into a single-agent skill is effective. Rather than treating the performance variance of skill distillation as task-inherent, it reframes the question at the level of the evaluation metric. The central contribution is the definition of Metric Freedom (FF), an a priori topological measure quantifying how output diversity interacts with score variance for a given evaluation metric, and the demonstration that FF robustly predicts the benefit of MAS-to-single-agent conversion. The study is validated via extensive experiments on canonical agentic benchmarks spanning Text-to-SQL, Causal Estimation, Causal Discovery, and Feature Engineering, comparing the proposed adaptive, FF-driven distillation framework to MAS and single-agent baselines.

Metric Freedom: A Principled Predictor for Skill Utility

The key theoretical advance is the introduction of Metric Freedom (FF), operationalized as follows: For a given metric and a set of nn agentic runs, compute distance matrices in output and score space, and set F=1ρ(Dout,Dscore)F = 1 - \rho(D^{\text{out}}, D^{\text{score}}), where ρ\rho is Spearman's correlation (Figure 1). A low FF characterizes "rigid" metrics—those with narrow solution spaces where correct solutions are both rare and highly sensitive to trajectory perturbations. Conversely, high FF corresponds to "free" metrics, where diverse outputs map to similar scores. Figure 1

Figure 1: Schematic of the two-stage distillation framework, where FF governs the selective extraction of skills and refines only as dictated by the metric's rigidity.

Empirically, FF0 is shown to be a robust, quantifiable signal (Spearman FF1, FF2, FF3) for when skill distillation yields performance improvements. The most compelling evidence is obtained within single tasks—e.g., on Causal Estimation, the same set of agent outputs yields FF4 for Method Selection Accuracy (MSA) and FF5 for Mean Relative Error (MRE), and the directionality of skill lift is inverted depending on the metric. This decouples the metric's geometric constraints from task identity and demonstrates the irrelevance of task labels to distillation utility.

Adaptive Two-Stage Distillation Framework

The proposed method consists of two stages:

Stage 1: Adaptive Distillation

A four-phase pipeline analyzes the MAS architecture and each metric's FF6, inventories MAS components (tools, domain knowledge, heuristics, coordination), and applies FF7-dependent rules:

  • On rigid/low-FF8 metrics, all domain knowledge, heuristics, and decomposition hints are distilled as mandatory guidance.
  • On intermediate-FF9 metrics, only the most impactful elements are retained.
  • For free/high-FF0 metrics (FF1), only tools and minimal domain references are extracted; forced pipelines and structural constraints are entirely omitted.

This decomposition ensures that exploration is not hindered unless the evaluation metric mandates strict adherence to narrowly defined solution paths.

Stage 2: Targeted Iterative Refinement

Only for metrics with FF2, a four-agent automatic loop (Explore, Main, Analyzer, Runner) is deployed to refine skills. The iterative process pinpoints error sources and updates the distilled skill, halting on convergence, oscillation, or sufficiency (cross-metric unchanged for three iterations or exceeding a validation threshold).

Experimental Results

A comprehensive suite of experiments validates the framework across four tasks, 11 datasets, and six metrics:

Performance and Efficiency

Adaptive skills guided by FF3 match or surpass MAS on all tasks except Text-to-SQL, at a cost reduction of 1.4–8FF4 and latency reduction of up to 15FF5 (Figures 2–3).

(Figure 2)

Figure 2: Task-level averaged performance, latency, and cost across all tasks, demonstrating strong efficiency gains for adaptive skills.

Metric-Level Causality

The empirical relationship between FF6 and normalized skill lift is summarized in Figure 3: only rigid metrics (low FF7) consistently benefit from structural distillation.

(Figure 3)

Figure 3: Scatter plot of headroom-normalized skill lift vs. metric freedom FF8. Only low-FF9 (rigid) metrics yield substantial positive lift.

  • Causal Estimation: On MSA (FF0), skill distillation yields +28 pp improvement (0.615FF10.897); on MRE (FF2), additional structure degrades performance.
  • Causal Discovery: On low-FF3 domains (e.g., Sachs), skill distillation provides up to +8.3 pp in F1; on higher-FF4 datasets, gains are attenuated or negative.

These results support the assertion that skill utility is fundamentally dictated by the evaluation metric rather than by the nature of the task or the agent.

Component Analysis

Ablations confirm that both tools and structured knowledge are necessary. Pipelines and rigid phase orderings provide no additional benefit and can be detrimental at higher FF5.

Implications and Theoretical Consequences

Practical Implications

Practitioners should assess the metric freedom FF6 for their evaluation landscape prior to any investment in MAS-to-skill distillation. For low-FF7, high-rigidity metrics (e.g., tasks requiring precise method selection or strict logical validity), structured distillation and iterative refinement yield significant efficiency and accuracy gains. For high-FF8 metrics, minimal skill extraction—limited to direct tool access—should be the default, as further structure constrains beneficial exploration.

Theoretical Implications and Future Outlook

FF9 is not only a static predictor but also a dynamic thermometer for model-internalized knowledge. As foundation models are scaled or fine-tuned, an observed upward drift in nn0 for certain metrics would empirically signal that the model has begun to internalize the previously externalized domain knowledge, diminishing the returns to skill distillation.

Open questions include the potential for leveraging proxy nn1 computations for unseen tasks and the systematization of skill composition for multi-metric evaluations. Cross-model and cross-benchmark validation will further clarify the universality and limits of nn2.

Limitations

The approach requires baseline agentic outputs to compute nn3, so extension to truly uncharted benchmarks will require proxy estimation. The sample size supporting the predictive link between nn4 and normalized lift (n=13) could be expanded for statistical robustness. Model capabilities inevitably confound skill utility; future work should track nn5 across model generations as a measure of ongoing externalization/internalization of domain knowledge.

Conclusion

This work provides a metric-level theoretical foundation and empirical validation for when MAS-to-single-agent distillation is prudent, introducing metric freedom as a robust, zero-overhead predictor. The adaptive distillation procedure matches or exceeds MAS on almost all benchmarks and is dramatically more efficient. The strong empirical coupling of nn6 and skill lift argues for the metric-centric diagnosis of agentic task pipelines and offers a roadmap for future research at the theoretical interface of agent architectures and evaluation geometry.

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Open Problems

We found no open problems mentioned in this paper.

Collections

Sign up for free to add this paper to one or more collections.

Tweets

Sign up for free to view the 1 tweet with 1 like about this paper.