
Three things happened this week that, together, tell you something real about where AI tooling is headed.
Tesla announced a $200-per-week spending cap on employee AI tools, effective July 6. Uber's COO publicly stated the company burned through its entire 2026 AI budget in four months, then capped per-person spending at $1,500 per month. And reporting from Electrek revealed that Meta's internal AI usage hit 73.7 trillion tokens in a single month, putting the company on track for billions in annual costs. Meta tracks this on an internal leaderboard called "Claudeonomics."
The bill for AI-assisted engineering is no longer theoretical.
Why Token Costs Are Spiking Now
If you've been wondering why this is happening all at once, the short answer is agents. Chat-based AI usage is relatively predictable: a developer opens a window, types a question, gets an answer. The cost per interaction is low enough that most companies could treat it like a SaaS subscription and not think too hard about it.
Agents are different. A coding agent working through a bug doesn't make one API call. It reads files, writes a fix, runs tests, reads the error output, adjusts the fix, runs tests again. Each loop burns tokens. Complex orchestrated workflows routinely consume 5 to 30 times more tokens than a simple chat interaction with the same model. That's not a rounding error. It's a structural difference in how the cost accumulates.
And unlike SaaS, there's no monthly ceiling by default. If a developer has a bad week with an agent that keeps looping on a stubborn problem, the bill reflects every retry. That's exactly what was happening at Tesla: engineers burning "thousands of dollars' worth of tokens each week," per the internal memo.
The Problem With Blanket Caps
Tesla's solution is a hard cutoff at $200 per person per week, with manager sign-off required to go over. Uber went with $1,500 per month. These feel reasonable until you think about what they actually do in practice.
A blanket per-person cap doesn't tell you which workflows are expensive. It just punishes the engineers doing the most AI-intensive work. The developer running a one-shot code completion under the cap has room to waste money on bad prompts all week. The developer running a multi-step test-generation agent who hits the ceiling on Tuesday gets blocked for the rest of the week, regardless of how efficiently they're using the budget.
Worse, caps without visibility create a black box. You know spending is high, but you don't know which tasks are driving it. Is it a specific type of prompt? A team running agents in a loop without a termination condition? A model choice that's overkill for the task? You can't fix what you can't measure.
Tesla's situation has an extra wrinkle that's worth naming. The $200 cap exempts "beta versions of xAI products," meaning Grok and Composer, Elon Musk's own AI tools, don't count against the limit. So the cap isn't purely about cost control. It's a policy instrument for model routing dressed up as fiscal discipline. That's a choice someone gets to make, but it's not a cost management strategy. And it explains why some Tesla engineers reportedly prefer Claude but are now being financially nudged toward Grok.
What Actually Keeps Token Costs Under Control
The approaches that work have three things in common: they're granular, they're automatic, and they're tied to tasks rather than people.
Route by task complexity. Not every call needs your most capable model. File summarization, lint checking, docstring generation, and basic Q&A all work fine on smaller, cheaper models. Reserve the expensive ones for the tasks that actually need deep reasoning: architecture decisions, multi-file refactors, debugging things you genuinely can't reproduce. If you're routing everything to the same model because it's easiest to configure, you're paying full price for work that doesn't need it.
Cache aggressively. If you're running agents against a large codebase, the context loading is often a bigger cost driver than the completion itself. System prompts, shared context blocks, and file contents that stay stable across runs are all candidates for prompt caching. On most major providers, cached input tokens cost 5 to 10 times less than uncached ones. This is one of the highest-leverage optimizations available right now, and most teams aren't using it.
Budget per workflow, not per person. The right unit for cost control is the task, not the employee. An agentic coding workflow that spends $8 and ships a working feature is a better deal than a developer who stays under their weekly cap by sending 200 manual completions that each miss the target. Set token limits and spending ceilings at the agent or workflow level, with automatic shutoffs. The circuit breaker should be in the code, not waiting in a manager's approval queue.
Measure before you cap. Before setting any spending limit, understand your actual distribution. In every engineering setup I've looked at closely, a small number of workflows drive the majority of costs. Finding and optimizing those specific workflows has a much bigger impact than any blanket policy.
The Signal Underneath the Spending News
Uber burning through a year's AI budget in four months doesn't mean AI tools aren't worth it. It means companies set budgets using 2023-era assumptions about what AI tool usage looks like, then got surprised when the whole team shifted to agentic workflows. The cost curve moved faster than the annual planning cycle could adapt.
The companies treating this as a token-spending problem are going to keep playing defense. The ones treating it as a model-routing and workflow-design problem are building the infrastructure to actually control it. Hard caps are easy to implement. They're also a reliable way to slow down the engineers doing your most demanding work.
I haven't fully solved this in my own pipelines. At small scale, manual tracking and a bit of model routing handles it fine. The harder part is setting sensible per-workflow budget limits once pipelines get complex and dynamic. But I'm pretty confident "get manager sign-off above $200 a week" isn't where this lands long-term.