What does an AI agent really cost?

Published August 8, 2026By ABD Legacy LLC
AI agents / cost

The $900 loop

On August 5, 2026, Pieter Levels (@levelsio) posted about running Matt Shumer's Gauntlet Loop, the viral one-prompt method that fans out subagents until each deliverable is "utterly wowed." His verdict was short: "a total mess and chaos of unperformant code." Each loop cost $500. Hours later he corrected himself: $900 total, and "I had to remove 95% of what it made and go back to what I had!"

Levels is not a beginner. He is one of the most followed solo builders in AI and has shipped more products than most agencies. If the most viral agent workflow of 2026 burned $900 a run on his stack, the pricing question changes for everyone: not "what does the model cost per token," but "what does the whole run cost, loops included?"

Why agent cost estimates hide the loops

Most estimates multiply list token prices by a projected request count and stop there. That math assumes every request does its job on the first pass. Real agents don't work that way:

The surprise is the pattern, not the price level. One Cursor user's 70-day workflow averaged $0.06 per request, then produced a single $2.78 request and projected to about $416 a month. GitHub Copilot users on metered billing reported $6 on one feature request and 8% of a monthly quota burned in two hours; legacy multipliers price GPT-5.5 at 57x a base request. OpenClaw users hit $141 overnight from a misconfigured heartbeat, and $800 in a month on setups they considered normal.

The blowups, priced

ScenarioReported costWhat it shows
levelsio Gauntlet Loop$500 per loop; $900 worst case; 95% of code removedFan-out + retries turn a viral method into a $900 burn
Subagent fan-out (two subagents)121,000 → 513,000 tokens (4.2x)Each subagent re-reads its own context every turn
AWS Bedrock prompt-caching miss$37,901.73No budget rails anywhere in the stack
Cursor 70-day workflow$928.45 total; $0.06 average; $2.78 max per requestThe tail, not the average, is the surprise
GitHub Copilot metered billing$6 one feature request; 8% quota in 2 hours; GPT-5.5 57x (legacy)Agentic work consumes far more compute
OpenClaw misconfigured heartbeat$141 overnight; $800/monthAmbient background activity bills like full calls

Budget the loops, not just the tokens

Three rules for anyone pricing or buying AI-assisted work:

  1. Ask what share of the quote is raw model usage versus human review and delivery. If the model bill is quoted high on models that cost cents per million tokens, that is margin, not cost.
  2. Model agent complexity in the estimate, not just tokens in and tokens out. Subagents, retries, context size, caching, effort level, and a budget cap all change the real number by an order of magnitude.
  3. Insist on budget rails. A kill switch and a hard cap turn a $37,000 surprise into a $50 one.

Agent cost is dominated by architecture and failure modes, not model price. Estimate the run the way agents actually run, and the estimate stops lying to you. The calculator below prices failure loops in, so you can see the range between a clean run and a loop-heavy one before you commit.

Run your project through the AI agent cost calculator

Estimate Your Agent Cost →

Frequently asked questions

How much did levelsio's Gauntlet Loop really cost?

Pieter Levels (@levelsio) reported $500 per loop on August 5, 2026, then corrected the same day: $900 total, with 95% of the generated code removed in cleanup. Both figures are his own words.

Why do agent cost estimates hide the loops?

Most estimates multiply list token prices by a projected request count and assume every request succeeds on the first pass. Real agents fan out subagents, retry, reload full context each pass, and bill overhead before the work starts — which is where the cost explodes.

What is the biggest agent cost amplifier?

Subagent fan-out. A small task that cost 121,000 tokens done directly cost 513,000 tokens fanned out to two subagents — a 4.2x jump — because each subagent re-reads its own context on every turn.

How expensive can a single agent run get?

Public examples range from $0.06 average per request on a normal 70-day Cursor workflow, to $2.78 for one heavy request, to a $37,901.73 AWS bill from a prompt-caching miss with no budget rails anywhere in the stack.

How do I keep AI agent costs under control?

Budget the loops, not just the tokens: ask what share of a quote is raw model usage versus human review, model agent complexity (subagents, retries, context size, caching, effort level) in the estimate, and insist on budget rails — a kill switch and a hard cap.

How do I estimate what an AI agent project will cost?

Model the run the way agents actually run: input tokens, output tokens, subagent fan-out, retry rate, context reloads, and a budget cap. A calculator that prices failure loops in will show you the range between a clean run and a loop-heavy one.

Sources