Chapter 0

Foreword

Why this handbook exists, who it's for, and what a single developer building in his spare time taught the world about autonomous agents.

Foreword — Why You Should Read This

“My goal was to have fun and inspire people. And here we are, the lobster is taking over the world.” — Peter Steinberger, February 14, 2026


The Event That Changed Everything

In January 2026, an Austrian developer pushed his side project to GitHub.

Peter Steinberger had built it for fun. He wanted an AI assistant that lived on his devices, talked on his channels, and actually remembered what he said. Not a chatbot. Not a tool you open and close. Something more like a colleague.

He called it OpenClaw.

In six weeks the project passed 100,000 GitHub stars. Then 200,000. Then 346,000 — the fastest-growing open source project in history. Lines outside tech offices in San Francisco and China. Jensen Huang took the GTC stage and called it “the operating system for personal AI — as big a deal as HTML, as big a deal as Linux.” Sam Altman called. Lex Fridman wanted an episode. Mark Zuckerberg watched with interest.

Peter Steinberger thanked everyone, submitted his job application, and joined OpenAI — not to build a company, but to change the world faster.


What He Actually Built

OpenClaw is not technically revolutionary. It is beautiful in its simplicity.

Steinberger understood something every great systems thinker eventually understands: the hard part is not making AI smart. The hard part is giving AI continuity — an identity, a memory, a purpose that stays stable over time. An AI that wakes up knowing who it is. An AI that remembers what happened yesterday. An AI that has a goal and works toward it, even when no one is watching.

He solved it with three text files.

SOUL.md. AGENTS.md. HEARTBEAT.md.

It sounds absurdly simple. It is. That’s why it works.

In SOUL.md you write who the agent is. What it values. How it speaks. What it never does. In AGENTS.md you write how it should work — the rules, the boundaries, what happens at the edge cases. In HEARTBEAT.md you write what it should do when you’re not there — a simple checklist the agent works through every 30 minutes, alone, while you sleep.

Three files. A continuous, learning, self-directing agent.

That is Steinberger’s brilliant achievement: not the model, not the infrastructure — the framework. The design of how an autonomous system should be organized to work reliably over time. That insight has spread to Claude Code, to Cursor, to Cline, to Flowwink and FlowPilot. Everyone building autonomous agents today is building, consciously or not, on Steinberger’s design philosophy.


Why You Should Read This

We are living in a moment without historical parallel.

Larry Ellison said it plainly on March 31, 2026, when he laid off 30,000 Oracle employees via email: “We can build more software in less time with fewer people using AI.” He is right. This is not a dystopia — it is a fact.

Harvard Business Review coined a new job title in February 2026: Agent Manager. Someone who leads, develops, and measures the results of AI agents — the same way a traditional manager leads human employees.

McKinsey identified nine organizational shifts driven by autonomous agents. Nine. Not a trend. Not a feature. Nine fundamental changes in how companies are structured, how decisions are made, how accountability is distributed.

The agentic layer — the control plane above the model — is one of the most valuable places in all of technology right now. Windsurf was acquired by OpenAI for $3 billion. Cursor is valued at $2.5 billion. Lovable at $6.6 billion. All of them are selling fundamentally the same thing: a well-constructed agent layer on top of models someone else builds.

The model is not the product. The lantern around the model is.

The person who understands how the lantern works — how to build a system that is more than a thin wrapper, how to create an agentic control plane with real data, real integrations, and a memory that can’t be copied — that person is in an exceptionally strong position.

That person can be you.


What This Handbook Does

It explains, from first principles, how the agentic architecture works.

Not in theory. In code, in production systems, in verified claims against OpenClaw’s source code.

We cover:

  • OpenClaw’s actual architecture — system prompt, workspace files, heartbeat, skills, sessions — and what the code actually says
  • The agentic control plane — how Claude Code, Cursor, Cline, and Roo work under the hood, what the thin wrapper problem means, and what a real moat requires
  • The API layer — the three diverging formats (Chat Completions, Responses, Messages) and how proxies like LiteLLM preserve your freedom
  • Flowwink as a practical example of adapting the OpenClaw pattern to a B2B SaaS system with PostgreSQL, Deno Edge Functions, and multi-tenant isolation
  • The new governance questions — the Agent Manager role, McKinsey’s framework, who is responsible when the agent makes a bad decision
  • The two failure modes everyone hits in production — stagnation and drift — and how to manage them
  • Where all of this is heading, with verified news from the last two weeks

One More Thing

One of the most important lines in Steinberger’s blog post from February 2026 — written three days after the entire tech world wanted to acquire him — was not that he joined OpenAI.

It was this:

“Yes, I could totally see how OpenClaw could become a huge company. And no, it’s not really exciting for me. I’m a builder at heart.”

That feeling — that the real value is in building, not in getting rich from it — is what drives all technology development that actually matters.

Steinberger built OpenClaw in his spare time, published it, and fundamentally changed how the world understands what an AI agent can be. An Austrian indie developer, a text file called SOUL.md, and a lobster that took over the world.

How large is the opportunity for those who actually understand how it works?

That is what we are trying to give you in this handbook.


— The Clawable Project, April 2026

With genuine and deep thanks to Peter Steinberger — for choosing to build in the open, share generously, and show that one person with the right idea can still change the direction of an entire industry.

The claw is the law.


How to read this: Start with chapters 1–5 for conceptual grounding. Jump to chapter 6 (Control Plane) if you’re a builder. Read chapter 14 (Governance) if you’re a manager. Read all of it if you want to understand the full picture — it’s written as a coherent argument, not just a reference.

This is your handbook

Agentic AI is evolving fast. The patterns, the laws, the architecture — they need to stay current with the community's collective knowledge. I want this to become the go-to resource for anyone learning how autonomous agents work.

Whether you fix a typo, add a chapter, share a production story, or challenge an assumption — every contribution makes this better for everyone.