Earlier quoted context omitted.
I put in probably thousands of Claude session hours a month, aggregated across work + personal. I must be missing something or supremely lucky because I feel like I’ve never hit these “stupid” moments. If I do, it’s probably because I forgot to switch off of haiku for some tiny side thing I was doing before going back to planning.
There are 720 hours in a month. You'd have to be running 3 sessions in parallel continuously to be doing thousands of session-hours in a month. Are individual people really doing this?!
Tell HN: Anthropic no longer allowing Claude Code subscriptions to use OpenClaw
821–830 of 928 posts
Re: Tell HN: Anthropic no longer allowing Claude Code subscriptions to use OpenClaw
#822There seem to be a ton of people who don't understand how subscription services work. Every single one of them oversells their capacity. The power users that use the services a lot are subsidized by those who don't use it as much, which tends to be the vast majority of the user base. OpenClaw is an autonomous power user. The growing adoption of this walking attack surface was either going to A) cause the cost of Clau…
It's one thing to pay $5 or $20 per month, which although it's a substantial difference, people pay that much for the convenience of having stuff ready and available - and it's a completely different thing to pay $200 per month. People don't pay that much for occasional usage and many/most people will organise themselves to use all or most of their weekly allowance when the expense is in that ballpark. If Anthropic m…
I don't think that's accurate for professional users. Personal users, especially those for whom $200/m is a significant cost, will definitely try to get the most out of it.
I know several $200/m user (I'm on the $100 personally), and they've all had the same experience I had when first upgrading to the max package: initially you try to use it as much as you can and feel like you need to keep it busy. But that goes away after a few days and you use it when you have need. The primary point of the max tiers for my peers is to not hit limits during their work if they occasionally use it intensively because it's disrupting to have to wait for X hours to continue.
If you get a benefit from using it, and you bill at $200 an hour, and you work 160+ hours a month, the $200 monthly cost doesn't register as a significant cost and you won't make it determine your usage patterns. I'm sure that'd be different if VC money goes away and it turns out the true price would need to be closer to $5k, but at this point it's similar to your ISP for fiber costing $80 a month. You enjoy the speed for a few days, but then it becomes the new normal.
Re: Tell HN: Anthropic no longer allowing Claude Code subscriptions to use OpenClaw
#823Personally I appreciate the clarity and technical enforcement vs banning accounts. I switched OpenClaw to MiniMax 2.7. This combined with Claude over telegram does enough for me. OpenClaw used to burn through all my Claude usage anyway.
how do you use Claude over telegram ?
Here are the docs. https://code.claude.com/docs/en/channels - actually I couldn’t even get this going myself so I asked Claude to do it (meta) and it did, I also had it set this up with a launcher and it all starts up automatically just like openclaw.
Re: Tell HN: Anthropic no longer allowing Claude Code subscriptions to use OpenClaw
#824Skimming through the comments, it feels like I am reading the same message over and over. I agree with some comments that are pointing out the issue with Anthropics capacity constraints and when Subscription vs Api is appropriate. I would like to point out something else. I have Z.ai subscription and they have a dashboard on my usage. When trying out Openclaw a while ago, I noted something worrying. Its constantly co…
Yeah, its heartbeat. If you keep HEARTBEAT.md empty, it won't be consuming tokens every half an hour. Use cron for periodic tasks if possible, but if you need LLM to process something periodically, that's what heartbeat is for. Z burned 166mio tokens in last 30 days, majority was the heartbeat. Definitely wouldn't pay for that if it wouldn't be the subscription. It uses 1-4% of every 5h quotas. Definitely not sustain…
Re: Tell HN: Anthropic no longer allowing Claude Code subscriptions to use OpenClaw
#825There seem to be a ton of people who don't understand how subscription services work. Every single one of them oversells their capacity. The power users that use the services a lot are subsidized by those who don't use it as much, which tends to be the vast majority of the user base. OpenClaw is an autonomous power user. The growing adoption of this walking attack surface was either going to A) cause the cost of Clau…
Re: Tell HN: Anthropic no longer allowing Claude Code subscriptions to use OpenClaw
#826Earlier quoted context omitted.
Actually its just one opus aimed at a codebase with one goal, and instruction to spawn 2 subagents: one worker, that comes up with implementation plan, one validator that validates the proposed plan against my guardrails, and then return back to subagent1 to implement this, where the second subagent again tests the implementation. One loop of this can take 20-60 min, and eat 2-5% of my week limit. I have to actively…
Very similar to what I am doing. How big is the codebase? My biggest was about 250K LOC and the usual is about 10K LOC. I am really curious about figuring this out because I'm genuinely puzzled.
My observations are these things impact both quality and token consumption a lot.
- Architecture matters really- how messy code is and how poorly things are organized makes a big difference
- how context window is managed especially now with default 1M window.
- How many MCP servers are used. MCP burn a lot, CLI tools are easy , quicker and good ones don't even need any additional harness like skills etc, just prompt to suggest using them.
- Using the right tool matters a lot
- What can be done with traditional deterministic tools have to be done that way with agent controlling (or even building) the tool not doing the tool's work with tokens.
- for large refactors codemod tools AST parsers etc are better than having the agent parse and modify every module/file or inefficiently navigate the codebase with grep and sed.
- How much prep work/planning is put in before the agents starts writing code. Earlier corrections are cheaper than later after code is generated
Typically my starting prompts for the plan phase are 1-2 pages worth and take 30-60m to even put in the cli text box. With that, first I would generate detailed ADRs, documentation and breakdown issues in the ticketing system using the agent, review and correct the plan several times before attempting to have a single line written.---
It is no different as we would do with a human, typing the lines of code was always easy part once you know what you want exactly.
It feels faster to bypass the thinking phase and offload to agent entirely to either stumble around and getting low res feedback or worse just wing it, either way is just adding a lot of debt and things slow down quickly .
Re: Tell HN: Anthropic no longer allowing Claude Code subscriptions to use OpenClaw
#827Re: Tell HN: Anthropic no longer allowing Claude Code subscriptions to use OpenClaw
#828I use Claude -p for a lot if not most of my coding workflows
Re: Tell HN: Anthropic no longer allowing Claude Code subscriptions to use OpenClaw
#829Earlier quoted context omitted.
Yeah, its heartbeat. If you keep HEARTBEAT.md empty, it won't be consuming tokens every half an hour. Use cron for periodic tasks if possible, but if you need LLM to process something periodically, that's what heartbeat is for. Z burned 166mio tokens in last 30 days, majority was the heartbeat. Definitely wouldn't pay for that if it wouldn't be the subscription. It uses 1-4% of every 5h quotas. Definitely not sustain…
Have you tried switching to smaller models like GLM-4.5-air for Openclaw? I’m thinking you’d consume way less of the hourly quota. Often times, the smaller models are decent enough when the task is not complex.
Re: Tell HN: Anthropic no longer allowing Claude Code subscriptions to use OpenClaw
#830Earlier quoted context omitted.
>>when your MCP avenue of abuse catches on Thats an interesting way of phrasing it - so is there a way to use the quota that's not 'abuse'? MCP/claude code seems to be want they want you to use it - are loops or ralph abuse as well ?
I take your point, the way I used “abuse” there probably carries more charge than I’d meant it to. It’s a totally valid way to use the technology, it’s “abusive” only of the subscription program. And I agree: Anthropic clearly want people to industrialize and automate usage. But that’s not what the subscription product is for. Use all the loops you want, burn all the tokens you want—just pay what they cost. > is ther…
Fair enough.
>> But that’s not what the subscription product is for.
This was the point I was trying to make - I pay for XX tokens/usage. But somehow using them all is 'taking advantage' ?
BTW - I'm actually not complaining about the limits - I probably only use half my tokens on average week. I'm just annoyed at having to jump thru hoops if I want to try something 'API' oriented. For me, AI is still the new shiny - I try all different sorts of things learning/playing. There was an article posted today about writing agent harnesses. That could be interesting - maybe I want to try my hand at it. But then I've got to mess around/pay extra to _try_ something I that my subscription already easily covers.
[added:] >>to take on personal-scale projects, to allow them to learn without having to understand the tool’s economics upfront. To play without fear of expensive mistakes.
This is exactly what I'm trying to do - however, as soon as you want to try anything 'API' oriented, the 'fear of expensive mistakes' comes right back.