Key Takeaways

  • A single /deep-research run on a Claude Max 5x plan consumed the entire monthly token allowance in 30 minutes, spawning 111 agents and queuing 123 verification claims.
  • Only 25 verification claims completed before the hard stop, yielding zero usable output.
  • Quesma extended the open-source claude-mem plugin so Anthropic's Claude, OpenAI's Codex, and Google's Antigravity share a local memory layer, routing tasks to Opus 4.8 for long-context synthesis, Sonnet 5 for structured extraction, GPT-5.5 for code-heavy verification, and Gemini 3.1 Pro for multimodal reconciliation.
  • Routing decisions reference three benchmark suites — Terminal-Bench, SWE-bench Pro, and Artificial Analysis — treated as directional guides rather than ground truth.

The token economy of AI agents has a new case study, and it comes from a researcher who torched his entire monthly allowance in half an hour. At Quesma, a team building tooling for agentic workflows, the founder set out to map the landscape of "tokenomics" — the monitoring, governance, and optimization practices that keep AI spend from spiraling. He started with Anthropic's /deep-research command on a Claude Max 5x plan. Thirty minutes later, the quota was gone. The run had spawned 111 agents, queued 123 verification claims, and verified only 25 before the hard stop killed the final synthesis. Zero usable output.

That failure precipitated a practical experiment in multi-model orchestration using only existing subscriptions: Anthropic's Claude, OpenAI's Codex, and Google's Antigravity. The researcher extended the open-source claude-mem plugin so all three could share a local memory layer, letting insights from one model feed directly into the next without re-prompting context. The result is a harness that treats the flagship models — Claude Opus 4.8, Sonnet 5, GPT-5.5, Gemini 3.1 Pro — as sub-agents routed by task fitness rather than brand loyalty.

The cost of naive depth

Deep-research modes are marketed as set-and-forget. In practice they behave like unmetered taxis: the meter runs while the agent spins up sub-tasks, fetches pages, cross-checks claims, and retries failed verifications. Quesma's run illustrates the gap between demo economics and production reality. Eleven hundred agents sounds impressive until the bill arrives and the synthesis never runs. For RevOps and CRM teams embedding agentic research into quarterly planning cycles, that unpredictability is a budgeting hazard.

The vendor response so far has been larger buckets — Max 5x, 10x, enterprise tiers — rather than smarter routing. The Quesma approach inverts that: keep the bucket, shrink the per-task cost by matching model to workload.

Benchmarks as compass, not gospel

The routing logic leans on three benchmark suites: Terminal-Bench for shell-centric agentic tasks, SWE-bench Pro for end-to-end software engineering flows, and Artificial Analysis for general price-performance snapshots. The researcher is explicit that none are treated as ground truth; numbers shift monthly and each suite measures its own slice. They served as a starting split — Opus for long-context synthesis, Sonnet for structured extraction, GPT-5.5 for code-heavy verification, Gemini 3.1 Pro for multimodal source reconciliation — with fallback rules hardened by live failures.

That pragmatism matters. Benchmark leaderboards are marketing collateral for model providers. Teams building internal agent fleets need a living router that demotes a model when its error rate spikes or its latency breaches an SLA. The Quesma harness does that by logging every sub-agent's token burn, wall-clock time, and verification pass rate, then re-weighting the split weekly.

Shared memory as force multiplier

The claude-mem extension is the quiet enabler. Without it, each model re-reads the same PDFs, re-parses the same API specs, and re-learns the same domain vocabulary. With a local vector store and append-only session log, the second model inherits the first model's distilled notes. Early runs show a 35-40% token reduction on multi-hop research chains simply by eliminating redundant context injection.

For CRM platforms embedding AI analysts — think territory planning, churn signal synthesis, or competitive landscape monitoring — that pattern is directly transferable. A single research session can feed a pipeline: Opus builds the outline, Sonnet extracts data points from filings, GPT-5.5 writes the SQL validation queries, Gemini cross-checks screenshots from analyst decks. The memory layer makes the handoff lossless.

Governance vacuum

What the post underscores is the absence of standard governance tooling. There is no open-source equivalent of cloud cost explorers for token spend. Teams improvise: spreadsheet caps, cron-job quota alerts, manual model-switch scripts. Quesma's harness bakes governance into the router — hard caps per sub-agent, automatic fallback to cheaper models when a task's token estimate exceeds a threshold, and a nightly roll-up report that maps spend to delivered artifacts.

That level of discipline is where the market is headed. Salesforce's Einstein GPT Trust Layer, HubSpot's AI Spend Dashboard, and Microsoft's Copilot Cost Management are all early entries. They watch totals; they don't yet route tasks. The next wave will be policy-aware routers that enforce "use Sonnet for summarization, Opus for synthesis" as enforceable rules, not suggestions.

Reproducible, not miraculous

The researcher's claim is modest: same subscriptions, 3x effective throughput, research that actually finishes. No new GPUs, no fine-tunes, no enterprise contracts. The stack runs on a laptop. That reproducibility is the story. Tokenomics is not a mystery; it is a routing problem with observable variables. Teams that treat model selection as architecture — not default — will ship agentic features while competitors are still waiting for quota resets.

For CRM and RevOps leaders, the takeaway is operational: audit your agent call logs, instrument token-per-task, and build a router that can demote a model on Tuesday because Monday's data said it drifted. The budget you save is the headcount you keep.

Frequently Asked Questions

How quickly can an unmonitored deep-research job exhaust a monthly token budget?

In Quesma's test, a single /deep-research command on a Claude Max 5x plan burned the full monthly allowance in 30 minutes.

What happens to in-progress work when the token quota hits its hard stop?

The run is killed mid-synthesis; Quesma's run verified only 25 of 123 queued claims and produced zero usable output.

How can RevOps teams make agentic research spend predictable for quarterly planning?

Quesma's approach keeps existing subscriptions but routes each sub-task to the most cost-fit model — Opus, Sonnet, GPT-5.5, or Gemini — using shared memory so context isn't re-prompted.

Which benchmarks does Quesma use to decide which model handles which task?

Terminal-Bench for shell-centric agentic tasks, SWE-bench Pro for end-to-end software engineering flows, and Artificial Analysis for general price-performance snapshots.