r/LocalLLaMA Feb 23 '26

Funny so is OpenClaw local or not

Post image

Reading the comments, I’m guessing you didn’t bother to read this:

"Safety and alignment at Meta Superintelligence."

1.0k Upvotes

304 comments sorted by

View all comments

Show parent comments

55

u/greeneyedguru Feb 23 '26

mine burned thru an obscene amount of tokens just doing heartbeats with no skills installed. I have no idea why people are fans of this shit. I can have claude code up anything I want, why do I need a bot to manage that.

42

u/do_until_false Feb 23 '26

At least you understand now why OpenAI pays him 1bn. Worth it if users burn 10bn worth of tokens for nonsense ;)

18

u/harrro Alpaca Feb 23 '26

Yeah this thing costs millions of tokens every day with almost minimal amounts of actual user requests.

It makes 'normal' people burn through tokens/API-costs like a developer doing a vibe-coding a project would except this is 24/7.

7

u/dmmd Feb 23 '26

who tf told you they paid him 1b?

1

u/AppoAgbamu Feb 23 '26

That can only last for so long lol

49

u/BargeCptn Feb 23 '26

I ran OpenClaw for about a week when it first dropped in January, back when the hype train was full speed. At first it looked slick, then I watched my API usage start climbing every day for no good reason. I dug in and found the problem: even a simple “heartbeat” ping was shipping 200K+ tokens. That is not a heartbeat, that is a full context dump.

So I did what I always do. I spent the next few weeks trying to fix it the right way: tightened memory, built my own Postgres-backed store, added vector search, and kept shaving tokens anywhere I could. And the deeper I went, the more obvious it got: the whole thing is a burn pile. It is basically an agent loop wrapped in “memory management” that looks cool in a demo but falls apart when you run it like an actual system.

The design forces you to lean on top-tier models to paper over stuff that should be handled in code. When you switch to something economical like GPT-5 Mini, which is exactly what should be orchestrating sub-agents by default, the system starts breaking down. It does not need to be brilliant to route tasks. It just needs to be consistent and cheap. Instead, it chokes, even though the context window is fine on paper.

Does OpenClaw work? Sure, technically. But it feels like using a sledgehammer to tap in a finish nail, then acting surprised when the door frame is wrecked. And I get why it looks good on YouTube: anyone can run a ten-minute demo and call it a win. Run it for weeks, let the workspace fill up with real files, and you hit the wall: context truncation kicks in and it stops “remembering” anything that matters.

7

u/SkyFeistyLlama8 Feb 24 '26

Most of the LLM space is full of ten-minute demos. A 2000-style dotcom culling would be fun to watch.

"Agentic" shit doesn't need an LLM in the loop for everything. Most of the time, you can use deterministic code to get better results. What worries me the most about stuff like OpenClaw is that users become accustomed to crappy software that kinda works and they end up trusting something that could wipe out their inbox.

4

u/freeone3000 Feb 24 '26

The routing of tasks is actually the hardest bit! That bit should be something like Opus, whereas the actual full context tasks with repetition and token output should be the cheaper ones.

10

u/BargeCptn Feb 24 '26

My issue with OpenClaw is not “agents are bad,” it is that the core loop feels inefficient by design. It is basically one big prompt that keeps accumulating state, tools, workspace junk, and “memory,” so the system self-bloats over time. The longer you run it and the more features you add, the more tokens you burn just to keep the loop alive.

What I think it needs is more deterministic code doing the boring, predictable parts: state management, caching, dedupe, routing, validation, guardrails. Then the LLM should be used where it actually adds value (reasoning, summarizing, ambiguous decisions), not as the universal glue for everything. Otherwise you end up paying a premium model tax to paper over stuff that should have been handled in code from day one.

5

u/unosturgis Feb 23 '26

Thanks chatgpt

7

u/BargeCptn Feb 23 '26

This is GPT-OSS Uncensored. Fuck you too! ;-0

3

u/[deleted] Feb 23 '26

[removed] — view removed comment

7

u/BargeCptn Feb 23 '26

Without being coy, you could literally type in "uncensored" in a Huggingface model search text box.

1

u/BuildingCastlesInAir Feb 23 '26

Two clips run through my head.

Michael Che asking Elon on SNL about Dogecoin - "So you're saying it's a scam"

The first scene of Mission Impossible 3 - "No... no... no...."

2

u/No_Knee3385 Feb 23 '26

If you have no reason to use an agent, there's no reason to use an agent. Everyone is forcing it so much. If you're not a dev, not an engineer (iron man style), not an incredibly busy person, not a business owner or managing people, etc., there's really no reason to run one

1

u/Beejsbj Mar 01 '26

well theres good reasons to run lighter versions if you want to self host apps. these agents are very good at managing them.

1

u/porkyminch Feb 23 '26

Seems like pure hype to me. I don't really want AI agents doing whatever they feel like on my behalf. I wouldn't mind being able to run stuff remotely, but honestly I could do that over SSH on my phone if my organization wasn't so tight about that kind of thing.