Show HN: CodeBurn – Analyze Claude Code token usage by task
21–30 of 37 posts
Re: Show HN: CodeBurn – Analyze Claude Code token usage by task
#22"Built this after realizing I was spending ~$1400/week on Claude Code with almost no visibility into what was actually consuming tokens." holy slop. the $200/month plan has NEVER hit rate limits for me and I often run 5+ tabs of concurrent agents in a large 300k LoC codebase
The $200/month plan throttles you when you hit limits - you just wait in a queue. API usage at $1400/week means unthrottled, parallel execution with no waiting. These are very different use cases, and for teams or heavy automation workflows the API cost can make sense if the time savings justify it.
You've never actually hit the limit have you? If you have you would know it's a hard limit.
Re: Show HN: CodeBurn – Analyze Claude Code token usage by task
#23Earlier quoted context omitted.
The $200/month plan throttles you when you hit limits - you just wait in a queue. API usage at $1400/week means unthrottled, parallel execution with no waiting. These are very different use cases, and for teams or heavy automation workflows the API cost can make sense if the time savings justify it.
That's not how it works You've never actually hit the limit have you? If you have you would know it's a hard limit.
Re: Show HN: CodeBurn – Analyze Claude Code token usage by task
#24Earlier quoted context omitted.
That's not how it works You've never actually hit the limit have you? If you have you would know it's a hard limit.
You’ve never used the API version versus the $200 plan and set the two at the exact same task, have you?
So, is your claim that they just slow down and queue the subscription version, or are you accusing them of using nerfed models, or is it something else? The only time I ever get some slowness has to do with the models being overloaded and has nothing to do with limits. Those are two separate concepts you seem to be confusing. And luckily, this is pretty rare for me since I don't work during US time zones.
Re: Show HN: CodeBurn – Analyze Claude Code token usage by task
#25Re: Show HN: CodeBurn – Analyze Claude Code token usage by task
#26Re: Show HN: CodeBurn – Analyze Claude Code token usage by task
#27Re: Show HN: CodeBurn – Analyze Claude Code token usage by task
#28The JSONL transcript parsing is clever. I've been reading those same files for a different purpose (rendering conversation history in a menu bar app) and the format is more reliable than I expected. Each tool call has enough metadata to reconstruct what happened without needing to re-parse the full conversation.
One thing that would be interesting to see: cost broken down by session when you're running multiple sessions in parallel. Right now I have no idea which of my 4 running sessions is burning the most tokens.
Re: Show HN: CodeBurn – Analyze Claude Code token usage by task
#29Re: Show HN: CodeBurn – Analyze Claude Code token usage by task
#30Cache hit rate is another metric I wouldn't have looked at otherwise. 98.2% on Opus 4.6 here. Apparently that's the difference between a $2k month and something much worse.
Activity classification is the actually useful feature though. Most token trackers just tell you total spend. This tells you what kind of work the spend went to.
Nice work!