Ask HN: Does OpenClaw need a re-architecture to be usable?

4 pointsposted 23 days ago
by xinbenlv

Item id: 46983068

5 Comments

PranayKumarJain

23 days ago

This is a great observation. I'm the creator of OpenClaw, and you've hit on exactly why we recently introduced the "Gateway" architecture.

The early versions were indeed "single programs trying to do everything," which is fine for a demo but fails for long-horizon tasks. The new Gateway architecture (v1.0+) moves us toward the OS model you're describing:

1. Process Supervision: The Gateway acts as a supervisor for multiple agent sessions. If an agent crashes or hangs, the Gateway can detect the heartbeat failure and attempt recovery. 2. State Persistence: We're moving memory and session state into a decoupled database (Clawdb) so you can restart the process without losing context. 3. Event-Driven: Sub-agents can now spawn to handle background work and notify the main session via system events, rather than blocking the main loop.

We're still early in the transition, but the goal is to make OpenClaw the "agentic kernel" that handles the messy reality of failure, rather than just a wrapper around a prompt. Reliability is the main focus for the next few months.

4shadowed

22 days ago

You are not the creator of OpenClaw, stop impersonating people.

jjice

22 days ago

Oh jeez good call on this. I took a look at the profile and it looks very LLM generated. The phrasing and everything.

Charbax

23 days ago

It’s impressive to see OpenClaw improving itself—especially with so many people contributing while the project is still brand new. Have you tried optimizing your workflow on it yet? You can add and tweak skills to much improve accuracy and token efficiency. Which model are you using, and where are you running it? Performance seems to vary a lot right now, and there are already tons of X posts and videos with different optimization approaches.