A fundamental capability-alignment paradox has been uncovered in large language model (LLM) agents: defense training intended to improve safety systematically destroys agent competence while failing to prevent sophisticated attacks. This finding comes from a research paper posted on arxiv.org, titled "The Autonomy Tax: Defense Training Breaks LLM Agents."
The study evaluated defended models against undefended baselines across 97 agent tasks and 1,000 adversarial prompts. The results reveal three systematic biases unique to multi-step agents.
The Three Biases
- Agent incompetence bias: Immediate tool execution breakdown occurs on benign tasks before observing any external content. Models refuse or generate invalid actions.
- Cascade amplification bias: Early failures propagate through retry loops, pushing defended models to timeout on 99% of tasks compared to 13% for baselines.
- Trigger bias: Paradoxical security degradation where defended models perform worse than undefended baselines while straightforward attacks bypass defenses at high rates.
Comparative Performance
| Metric | Undefended Baseline | Defended Model |
|---|---|---|
| Timeout rate on tasks | 13% | 99% |
| Attack bypass rate | (not reported) | High (straightforward attacks bypass defenses) |
Root Cause: Shortcut Learning
The root cause analysis identifies shortcut learning as the culprit. Models overfit to surface attack patterns rather than semantic threat understanding. This is evidenced by extreme variance in defense effectiveness across attack categories.
"Defense training designed to improve safety systematically destroys agent competence while failing to prevent sophisticated attacks."
The paper argues that current defense paradigms optimize for single-turn refusal benchmarks while rendering multi-step agents fundamentally unreliable. New approaches are needed that preserve tool execution competence under adversarial conditions.
Implications for Autonomous Systems
LLM agents increasingly rely on external tools—file operations, API calls, database transactions—to autonomously complete complex multi-step tasks. Practitioners who deploy defense-trained models to protect against prompt injection attacks may find their agents unreliable. The findings demonstrate a need for defense paradigms that do not trade off competence for safety.