Maintain quality, then cut accepted-task cost by 10x to 50x where the current AI stack is overbuilt. That is the tokenomics mandate. The goal is not to make agents cheaper by making them worse. The goal is to stop paying frontier-model prices for every lookup, classification, retry, tool schema, stale context block, and validation step when a smaller model, open model, cache, rule, or narrower prompt would clear the same business bar.
The warning signs are already showing up in public. Uber executives have questioned whether tokenmaxxing is translating into useful product output, after reporting that the company blew through its 2026 Claude Code budget by April. OpenAI had to reset Codex usage caps after background features burned credits faster than users expected. Former Tesla AI director and OpenAI cofounder Andrej Karpathy has described token budgets as the new developer constraint, even switching between Codex and Claude as quotas run down. Anthropic has also had to put usage limits around Claude Code because some users ran it continuously.
For a CFO, the issue is not that OpenAI or Anthropic tokens are expensive in isolation. The issue is that agents turn one business request into a chain of billable steps, and the bill often arrives before anyone can connect spend to accepted work.
Splunk's recent writing on agent tokenomics makes the core point clearly: agent costs compound because every step sends context through a stateless API. The second Splunk piece, The New Currency of AI, frames the budget problem at the executive level. Tokens are now the operating currency of the AI stack, but they are volatile, hard to see in real time, and only loosely connected to business value unless the agent is instrumented.
The buyer question is no longer "what is the model price per million tokens?" The better question is "what does one accepted task cost, and which stack gets us that result without locking us into the wrong vendor?"
Tokenomics Is Cost Accounting for Agent Work
Agent tokenomics is the practice of measuring how tokens move through an agent and deciding which tokens were worth paying for.
A useful breakdown has six buckets:
| Token bucket | What it pays for | Waste pattern to watch |
|---|---|---|
| Context | System prompts, policy text, history, tool schemas | Irrelevant tools and stale history riding along on every call |
| Reasoning | Planning, intermediate steps, self-checks | Deep reasoning on simple routing or lookup work |
| Retrieval | Documents and records added to ground the answer | Too many chunks, wrong chunks, duplicate chunks |
| Tool | Function call arguments and tool results | Large API responses copied forward after the model already used them |
| Coordination | Multi-agent roles, handoffs, shared state | Agents talking to agents more than they work |
| Governance | Eval checks, safety filters, human review triggers | Checks that are unpriced, duplicated, or run on every low-risk task |
Splunk's categories are useful because they stop the team from treating the invoice as one number. A 30% token reduction sounds good until you learn it came from removing the validation step that caught refund-policy violations. A 20% increase may be acceptable if it reduces human review by half. Tokens are not good or bad. Their value depends on what they bought.
Tokenomics is not the same as cheapness. Cheap models can be expensive if they fail, retry, hallucinate, or send too many cases to human review. Expensive models can be economical if they finish the workflow in fewer turns and clear the quality bar without escalation. The only honest unit is the accepted outcome.
The Metric That Matters: Cost per Accepted Task
Raw token volume is a system metric. It is not a business metric.
For operators, the useful metric is cost per accepted task:
cost per accepted task =
model cost
+ tool and runtime cost
+ eval and monitoring cost
+ human review cost
divided by accepted completed tasks
An accepted task is not simply "the agent produced an answer." It means the work cleared the bar for that workflow. A support reply answered the customer and followed policy. An invoice reconciliation matched the ledger or escalated correctly. A CRM update touched the right record once. A contract review cited the relevant clause and did not invent a risk.
Many AI budgets go wrong here. Teams optimize the cheapest visible line item, usually model spend, while the expensive failures move elsewhere:
- More retries when the cheaper model loses state.
- More retrieval tokens because the prompt depends on long context.
- More human review because the agent's output cannot be trusted.
- More infrastructure cost because the agent runs long.
- More customer support cost because wrong answers create follow-up tickets.
The accounting has to include the whole loop. Splunk's tokenomics work points in that direction by tying cost to quality, latency, observability, and circuit breakers. The OpenNash version is even more operational: score the task first, then optimize the stack that produced the accepted result.
Harbor Shows How to Test Open Models Fairly
The open-model question is where tokenomics gets interesting.
Most teams compare models in an unfair way. They try one frontier API on a rich agent stack, test an open model in a rough local script, get worse results, and conclude that open models are not ready. Or they compare model prices without counting the extra turns, retrieval, validation, and review needed to make each model usable.
Harbor gives a cleaner path, which is why we wrote about it as agent eval infrastructure. Its core concepts are exactly the objects tokenomics needs: a task, a dataset, an agent, a container environment, a trial, and a job. A task is one instruction, environment, and verifier. A dataset is a collection of those tasks. A job can run many trials across agents and models.
With that structure, a company can ask the useful question:
Can an open model, running against the same Harbor task set, produce the same accepted outcomes as a frontier API at lower total cost?
Results will differ by workflow. An open model may be excellent for classification, routing, extraction, and deterministic tool use. A frontier model may still win on long-horizon reasoning or ambiguous customer writing. Harbor-style testing moves the discussion away from brand loyalty and benchmark headlines. You can run both models against the same containerized tasks, score the same verifier, and measure the full cost of each accepted task.
The Harbor getting started docs show how this can run locally or across cloud sandboxes with parallel trials. The task docs also matter for cost control because they make the verifier explicit. A task can produce a reward file or JSON metrics, which means the eval can track more than pass/fail:
- Tokens used by call and by phase.
- Runtime and sandbox cost.
- Number of turns and retries.
- Tool calls and tool payload size.
- Human review rate.
- Quality score or policy pass rate.
- Accepted-task rate by model.
The practical bridge between open models and tokenomics is simple: open models win when they clear the same task bar for less total cost, with the deployment control the business needs.
Where Frontier-Lab Alignment Can Distort the Decision
Large frontier labs are not bad actors. They build excellent models, and many production systems should use them. The problem is alignment of incentives.
If your deployment partner is tied to one frontier lab, one cloud marketplace, or one hosted agent platform, their default recommendation will often point back to that stack. Sometimes that is the right answer. Sometimes it is expensive, brittle, or too locked down for the workflow.
Tokenomics exposes those tradeoffs:
| Decision | Frontier-default answer | Neutral engineering question |
|---|---|---|
| Model choice | Use the strongest hosted model everywhere | Which model clears this workflow's release bar at the lowest full cost? |
| Context | Send everything to improve quality | Which context changed the decision, and which context was overhead? |
| Evals | Use the platform's built-in scoring | What verifier matches the business rule, and who owns it? |
| Deployment | Run in the vendor's cloud | Does the data, cost, latency, or compliance profile require self-hosting or hybrid routing? |
| Optimization | Negotiate token price | Reduce failed turns, oversized tools, bad retrieval, and review load |
The neutral question is rarely anti-frontier. It is anti-default. A good AI stack may use a frontier model for complex reasoning, an open model for structured extraction, a small evaluator for routine quality checks, deterministic code for hard business rules, and a Harbor-style harness to compare routes over time.
That stack needs engineering judgment. It also needs someone in the room whose compensation, roadmap, and partner incentives are not anchored to one lab's API volume.
The Tokenomics Operating Model
A working tokenomics program has five parts.
First, trace the workflow. Capture model calls, input and output tokens, retrieved context, tool schemas, tool responses, latency, errors, retries, reviewer decisions, and final task status. Start with total input and output tokens if that is all you have. Splitting spend into context, reasoning, retrieval, tool, coordination, and governance can come next.
Second, define accepted work. Every workflow needs its own pass bar. A refund agent, a contract-review agent, and a sales-ops agent should not share one generic success metric. The eval suite defines what counts as a completed task.
Third, run model-route trials. Compare the current frontier model, cheaper frontier routes, open models, and hybrid routing against the same task set. Measure accepted-task rate, retries, latency, human review, and total cost. Do not swap models based on a benchmark alone.
Fourth, install circuit breakers. Treat token usage like operational risk. Stop runaway loops. Cap turns by workflow. Block oversized tool payloads. Route high-risk work to review before it burns budget and creates customer harm.
Fifth, review failures weekly. Every expensive failed run should become either a better verifier, a smaller context, a tighter tool schema, a retrieval fix, a routing rule, or a human approval gate. Tokenomics improves when the failure loop feeds the harness.
We use the same pattern for workflow-specific evals, agent traces, and AI workflow pass/fail criteria. Tokenomics is not a separate finance dashboard. It is eval-driven engineering with cost attached.
How OpenNash Can Help
OpenNash helps companies keep output quality high while driving accepted-task cost down, often by 10x to 50x when the first implementation used one expensive model for every step.
The work is neutral field deployment engineering for agentic systems. You want FDEs who are not aligned with one big frontier lab, one cloud marketplace, or one hosted agent platform. The job is not to sell a foundation model. The job is to give the client an objective opinion on the AI stack: which model to use, where open models are enough, where frontier models are worth it, what should be deterministic code, what should be cached, what should be evaluated, and what the client should own.
For tokenomics, the work includes:
- Map the workflow and define accepted-task criteria with the process owner.
- Instrument token usage, tool payloads, retrieval, retries, latency, and review decisions.
- Build a Harbor-style eval harness when the work needs containerized tasks or model comparison.
- Compare frontier APIs, open models, local inference, and hybrid routing against the same cases.
- Separate hard business rules from model judgment so deterministic checks stay cheap and reliable.
- Design circuit breakers for runaway loops, oversized context, stale retrieval, and budget spikes.
- Build dashboards around cost per accepted task, not just monthly model spend.
- Hand over the prompts, tools, evals, traces, routing rules, and deployment docs so the client owns the system.
Mid-market and PE-backed companies feel this most when they want AI upside without vendor captivity. A frontier-lab partner may be useful for access to a powerful model. A neutral FDE team is useful when the business needs an objective opinion on the whole AI stack: model mix, retrieval layer, eval harness, observability, deployment model, security boundary, and operating cost.
The best answer may still include a frontier API. It may include several. It may also include open models for most of the work, with expensive reasoning reserved for a narrow set of cases. Prove the mix with your tasks and your economics.
Agent tokenomics turns that decision from a sales conversation into an engineering loop: measure the work, score the output, compare the stack, route by evidence, then keep improving as the workflow changes.
Managed this way, AI cost comes down without making the agent worse.