AgentGrad: Intervention-guided Prompt Optimization for Multi Agent Systems
Summary
AgentGrad improves multi-agent prompt optimization by using sequential intervention to identify target agents and semantic clustering of textual gradients, achieving state-of-the-art performance and reducing optimization time by 2.5 times.
View Cached Full Text
Cached at: 09/10/26, 02:17 PM
Paper page - AgentGrad: Intervention-guided Prompt Optimization for Multi Agent Systems
Source: https://huggingface.co/papers/2609.08572
Abstract
AgentGrad improves multi-agent prompt optimization by identifying target agents through sequential intervention and clustering gradients semantically to avoid mixing unrelated errors.
Large language model (LLM)-basedmulti-agent systems(MAS) achieve strong performance by employing specialized multiple agents, yet their performance depends on the prompt design of each agent. For MAS prompt optimization,textual gradientmethods that guide prompt updates using natural-language feedback have emerged as a leading paradigm. In this paper, we identify limitations in two stages of existingtextual gradientapproaches:gradient extractionandgradient aggregation. Ingradient extraction, previous works select a target prompt without verifying whether modifying it resolves the failure, and derive gradients without agent-level supervision over the corresponding agent’s intermediate output. Ingradient aggregation, individual gradients are randomly grouped and concatenated, often mixing unrelated failure modes and producing prompts that fail to generalize. To address these limitations, we proposeAgentGrad, a prompt optimization framework formulti-agent systemsbased onsequential interventionandsemantic textual gradient abstraction. For each failure,sequential interventionmodifies the behavior of one agent at a time to identify the target agent whose modification resolves the failure. The modified output of the target agent then serves as agent-level supervision for extracting a fine-grained gradient.Semantic textual gradient abstractionclusters semantically similar gradients to prevent mixing unrelated failure modes, and abstracts each cluster into a generalized gradient that captures the shared corrective pattern. Experimental results show thatAgentGradachieves state-of-the-art performance across five MAS benchmarks and reduces wall-clock optimization time by 2.5times on average compared to the next-fastest baseline.
View arXiv pageView PDFAdd to collection
Get this paper in your agent:
hf papers read 2609\.08572
Don’t have the latest CLI?curl \-LsSf https://hf\.co/cli/install\.sh \| bash
Models citing this paper0
No model linking this paper
Cite arxiv.org/abs/2609.08572 in a model README.md to link it from this page.
Datasets citing this paper0
No dataset linking this paper
Cite arxiv.org/abs/2609.08572 in a dataset README.md to link it from this page.
Spaces citing this paper0
No Space linking this paper
Cite arxiv.org/abs/2609.08572 in a Space README.md to link it from this page.
Collections including this paper0
No Collection including this paper
Add this paper to acollectionto link it from this page.
Similar Articles
Environment-Grounded Automated Prompt Optimization for LLM Game Agents
Introduces an automated prompt optimization framework for LLM game agents that decomposes the observation-to-action pipeline into two agents and iteratively refines prompts via an evolutionary loop guided by environment returns. Evaluated on BabyAI tasks, it significantly improves success rates (e.g., from 0% to 72.5% on PutNext) without updating model weights.
SAGE: Stochastic Prompt Optimization via Agent-Guided Exploration
Introduces SPO, a stochastic search framework for automatic prompt optimization, with three strategies including SAGE, an agent-guided multi-agent pipeline. Evaluated on benchmarks and deployed on a mental-health chatbot, showing improvements in retention through continuous optimization.
SePO: Self-Evolving Prompt Agent for System Prompt Optimization
SePO (Self-Evolving Prompt Optimization) proposes a self-referential prompt agent that optimizes both task agents' system prompts and its own system prompt through an evolutionary search, outperforming Manual-CoT, TextGrad, and MetaSPO across five benchmarks including AIME'25, ARC-AGI-1, and GPQA.
Beyond Prompts: Measuring and Optimizing LLM Tool-Agent Harnesses
This paper studies agent harness optimization to improve LLM tool agents without retraining, focusing on prompts and tool-boundary middleware, and introduces a protocol and the PRISM optimizer for measurable gains.
Control-Data Flow Separation: Stable Prompt Optimization in Multi-Agent LLMs
This paper introduces a control-data flow separation framework to stabilize prompt optimization in multi-agent LLM systems by decoupling execution protocols from language content, achieving 100% protocol validity while enhancing task performance.