Tellie / Developers / Cookbook / Token + cost meter

cookbook

100% free

Token + cost meter

Keep a live count of tokens / cost / files-changed in the notch while an agent works, so you can glance at the meter instead of digging through logs.

From an MCP agent

Have the agent call update_status whenever its running totals change (replaces the previous line, same source):

mcp
update_status({
  text: "142k tokens · $0.38 · 4 files",
  source: "Claude",
  icon: "number"
})

From a script / CLI

bash
tellie update "142k tokens · \$0.38 · 4 files" --source Claude --icon number

Notes

A tokens / cost / files meter ticking up in place as the agent works, then settling on the final total.
See also: Agent lifecycle status.