June 2, 2026
Why Agent Idle Time Still Costs Money
Idle agents are not free. Heartbeats, watchers, polling loops, and background context loads can become a material part of your LLM bill.
Idle does not mean free
An agent can be idle from a user's perspective and still spend money. It may be checking a task queue, polling an inbox, watching a deployment, summarizing a status file, or deciding that nothing needs attention.
Each of those checks is still an LLM call if the runtime uses the model to decide what to do.
The heartbeat pattern
Heartbeats are useful. They let an agent act proactively instead of waiting for a human. The cost problem comes from running them too frequently, with too much context, on too expensive a model.
A heartbeat that loads workspace instructions, memory, task files, and tool descriptions can cost more than expected even when the output is just "nothing changed."
Background watchers compound quietly
One watcher is harmless. Ten watchers across deploys, inboxes, issue queues, dashboards, and product checks become a standing burn rate.
The failure mode is fragmentation. Each small automation looks cheap in isolation, so nobody sees the total background cost until the invoice arrives.
Use cheaper models for classification work
Most idle checks are classification tasks: should I act or not? Is there an error? Is the process done? Did a new item arrive?
Those tasks rarely need the most expensive model. Use a small model for routine checks and reserve the larger model for the work that follows when the check finds something real.
Put idle work on a budget
Track idle automation separately from human-initiated sessions. Give it a daily envelope. If the envelope is exceeded, the system should degrade gracefully: check less often, summarize less context, or require a human to restart the watcher.
The bottom line
Agent idle time is an operations cost. Treat it like one. Measure it, budget it, and route it through cheaper models where possible.
Clawback separates background automation from interactive usage so the quiet part of the bill is visible.
See your actual numbers
The calculator runs in your browser. No account needed.