
Token Budgets: An Empirical Catalog of 63 LLM-Agent Budget-Overrun Incidents, with an Affine-Typed Rust Mitigation as a Case Study
This empirical study catalogs 63 real production failures where LLM agents burned through token budgets, costing thousands of dollars in retry loops before operators noticed. The authors demonstrate how Rust's affine type system can prevent these budget overruns at compile time rather than hoping runtime checks catch them. If you're deploying agents in production, this research shows you exactly what can go wrong and provides a concrete mitigation strategy.
Takeaways3
- Documents 63 confirmed production incidents of LLM agent budget overruns across 21 orchestration frameworks.
- Demonstrates that affine type systems can prevent budget double-spending and use-after-delegation at compile time.
- Provides concrete taxonomy of failure modes with documented dollar losses from real deployments.










