# Mast taxonomy

MAST is a taxonomy of how multi-agent LLM systems fail, from the Berkeley paper "Why Do
Multi-Agent LLM Systems Fail?" (arXiv:2503.13657). The authors annotated over 1,000 execution
traces from seven open-source multi-agent frameworks and grouped what went wrong into 14 failure
modes under three categories: system design issues, inter-agent misalignment, and task
verification. Expert annotators agreed on the labels with a Cohen's kappa of 0.88.

Most of the 14 modes live in the interaction between agents, not in any one agent's output. A
step gets repeated, a task derails at a handoff, an agent stops before the work is done, a result
gets accepted without a check. If you grade each agent's answer on its own, none of that shows
up. That's why the paper works from traces rather than outputs, and it's the reason to evaluate a
multi-agent system at the trace level.

In practice you use MAST to classify a failed production trace. Walk the trace step by step. At
each handoff, check what one agent passed and what the next one actually used. At each stop,
check what verified the result. The mode you land on tells you where the fix goes: a design
issue means a prompt or role change, a misalignment means changing what agents pass each other,
a verification failure means a missing check.

## Questions answered under this concept

- [How do I map a production trace to a MAST failure mode?](https://tessary.ai/answers/mast-taxonomy/how-do-i-map-a-production-trace-to-a-mast-failure-mode)
- [What are the three MAST failure categories?](https://tessary.ai/answers/mast-taxonomy/what-are-the-three-mast-failure-categories)
- [What is the MAST taxonomy?](https://tessary.ai/answers/mast-taxonomy/what-is-the-mast-taxonomy)
- [Which MAST failure modes show up most in production?](https://tessary.ai/answers/mast-taxonomy/which-mast-failure-modes-show-up-most-in-production)

---

Source: https://tessary.ai/answers/mast-taxonomy
All concepts: https://tessary.ai/answers
From Tessary, agent reliability for AI agents in production: https://tessary.ai
