Peter Steinberger is often introduced as the developer who built OpenClaw and then joined OpenAI. That is accurate, but it is not yet a useful profile. The better question is what kind of builder arrived at the agent problem, and what his earlier work can, and cannot, tell an operator about a system now connected to chats, models, files, and host tools.
The public record describes an Austrian iOS developer, former teacher and San Francisco engineer, founder of PSPDFKit, and originator and technical steward of OpenClaw. It also shows a project with a foundation, staff, maintainers, and a public repository. TU Wien’s public biography, the OpenClaw README, and the project’s foundation announcement support that narrower description. “The mind behind OpenClaw” is useful only as an origin story, not as a claim that one person wrote or maintains every current subsystem.
Start with the date question
Even the beginning of Steinberger’s best-known company needs a footnote. A 2018 event record from TU Wien’s Innovation Incubation Center says he founded and bootstrapped PSPDFKit in 2011. Nutrient, the company’s successor, uses the same year in its company history.
In a 2019 Semaphore interview, Steinberger said he started the whole company in 2010. He described taking a PDF engine built for a client, refactoring it into a product, putting up a minimal website and payment flow, and discovering demand when two people bought it in the first week.
The defensible conclusion is not to declare one source wrong. The two dates may reflect the beginning of the work and the later company record, but the opened sources do not prove that explanation. A careful profile should therefore use 2011 as the institutional and company-history date while noting that Steinberger recalls beginning the company in 2010.
The first career was developer infrastructure
Steinberger’s pre-OpenClaw work was not mainly about shipping a consumer chatbot. It was about making difficult document behavior usable inside other people’s software. The Semaphore interview describes PSPDFKit expanding from an iOS product to Android, the web, Windows, and macOS. Nutrient’s history presents the same broader cross-platform trajectory.
That kind of product is judged after it disappears into another company’s application. In PSPDFKit’s account of how it worked, the company describes moving from a single-person operation to more than 40 people while supporting several platforms. It emphasizes maintainability, long-term code evolution, and API stability. Because the SDK was integrated into thousands of applications, changing an interface casually would transfer the cost of the change to many other development teams.
There is a plausible connection to OpenClaw here, but it should remain an inference. A persistent assistant also exposes interfaces that other systems depend on: providers, channels, tools, permissions, plugins, and stored sessions. Steinberger’s earlier career does not prove that he personally designed every OpenClaw boundary. It does show experience with software whose value depends on surviving integration, platform expansion, and years of maintenance.
The founder-to-operator transition is documented too. In the Semaphore interview, Steinberger discussed moving from long-term iOS development toward running a company. Then, in its October 2021 investment announcement, PSPDFKit said it had received more than €100 million from Insight Partners and that Steinberger and co-founder Martin Schürrer were stepping back from full-time active roles. That is a company-issued account, not an independent audit, but it records a concrete change from hands-on founder to a less active ownership role.
OpenClaw started as a playground, then became a public system
Steinberger’s own February 14, 2026 announcement describes OpenClaw as a playground project that grew unexpectedly quickly. He said he wanted to build an agent his mother could use, with more attention to safety, broader model access, and the latest research. He also said that after 13 years of building a company, creating another large company was less interesting to him than building.
The public repository gives the story a useful date without settling its earliest history. The GitHub repository metadata records openclaw/openclaw as a public repository created on November 24, 2025. That timestamp does not prove when the first code was written, when the project received its earlier names, or when the first public experiment began.
The project’s later account describes a small beginning: the OpenClaw Foundation announcement says that six months earlier there had been a single claw and a Discord server at Steinberger’s home in Austria. The same announcement describes a nonprofit structure, full-time staff, and volunteer maintainers, while saying that Steinberger continues to make especially important technical calls. The current README also describes OpenClaw as developed in the open by the Foundation, Peter Steinberger, and the community.
That distinction matters. A creator can set a project’s direction without being its entire engineering organization. The current OpenClaw story includes maintainers, contributors, infrastructure sponsors, and people building channels, skills, and plugins. The profile is stronger when it follows that transition from personal experiment to shared system instead of freezing the project at its founder.
The technical through-line is the control plane
OpenClaw’s current README describes an assistant that runs on a user’s computer, meets users through messaging channels, and keeps state, memory, and credentials on the user’s hardware. It identifies the Gateway as the local control plane for sessions, tools, events, and channel connections. This is a different product shape from a hosted chat window: the assistant is valuable partly because it can remain present and reach systems beyond the conversation.
There is an important qualification. The same README says prompts go to the model providers and chat platforms configured by the operator. The project’s local-first positioning therefore does not mean that all processing stays on the machine. Local state, local control, hosted inference, messaging integrations, and optional diagnostics are separate paths that need to be mapped before sensitive data is connected.
This is where Steinberger’s developer-tooling background offers a useful lens rather than a heroic explanation. OpenClaw’s hardest problem is not adding another integration. It is keeping a growing control plane understandable while its reachable surface expands. That is an architectural interpretation of the public material, not a claim about which individual wrote which component.
The OpenAI move is a stewardship test, not an acquisition story
On February 14, 2026, Steinberger announced that he was joining OpenAI to work on bringing agents to everyone and that OpenClaw would move to a foundation and remain open and independent. TechCrunch reported the move the next day and described Sam Altman’s public framing of Steinberger’s new work around personal agents.
The opened sources do not establish an acquisition. The current OpenClaw homepage says OpenAI is a donor, that Steinberger works there, and that OpenClaw is not an OpenAI product. The Foundation’s own announcement says the Foundation employs the core team and that OpenAI supports the project. Those are project-owned statements, so they should be read as governance positioning rather than as a substitute for public legal filings.
The practical question is whether the project can preserve model and organizational neutrality while one of its central technical stewards works for a major model company. The public record does not provide Steinberger’s exact OpenAI title, employment terms, or a complete account of the Foundation’s control rights. Those gaps are not evidence of a hidden arrangement; they are simply limits on what can responsibly be claimed.
What operators should borrow, and what they should not
Steinberger’s biography is less useful as a promise of success than as a prompt to inspect the boundaries around the software. OpenClaw’s current documentation gives operators a concrete checklist.
- Keep one trust boundary per Gateway. The official trust model supports one Gateway for a single operator or mutually trusting team. It does not support a shared Gateway for mutually untrusted or adversarial users. People who can message a tool-enabled agent share that agent’s delegated authority, so hostile-user isolation calls for separate Gateways and preferably separate operating-system users or hosts.
- Separate conversation access from control-plane access. The permissions documentation treats Gateway configuration and scheduled jobs as control-plane-sensitive. It also describes paired nodes as operator-level remote execution surfaces. If an agent handles untrusted content, the documented deny-list guidance is a better starting point than assuming that a prompt will reliably distinguish an instruction from an attack.
- Treat plugins and skills as code. OpenClaw’s documentation says plugins run in-process with the Gateway and should be treated as trusted code. Installation and updates can execute code, so source review, explicit allowlists, pinned versions, and a narrow install policy matter more than a plugin’s name or marketplace placement.
- Map the data path before calling the system local. The telemetry documentation says a daily update check is enabled by default, while anonymous feature statistics are opt-in. Operators can inspect the request with
openclaw telemetry showand disable automatic update requests withupdate.checkOnStart: false. That does not replace checking the separate providers, channels, diagnostics, and plugins configured in the deployment. - Use blast radius as a work habit, not as a productivity claim. In his self-reported agent-engineering workflow, Steinberger describes estimating how many files a change may touch, stopping work that grows beyond expectation, and asking for options before a large change. Those are sensible review cues for agent-assisted work. They are not controlled research, and a solo builder’s workflow should not be copied unchanged into a team or a high-risk environment.
A builder, not a shortcut
Peter Steinberger’s strongest documented through-line is not a mysterious ability to make agents autonomous. It is a long record of building developer infrastructure that has to integrate with other systems and keep evolving. PSPDFKit supplied experience with platform expansion, API consumers, maintenance, and the uncomfortable move from builder to operator. OpenClaw applies a related concern to a more exposed surface: a persistent assistant whose usefulness and risk both grow with its reach.
That background helps explain the project’s emphasis on a Gateway, provider flexibility, channels, plugins, and explicit security boundaries. It does not guarantee reliability, privacy, or safe deployment. Those still depend on the operator’s trust model, permissions, data choices, update discipline, and willingness to review what the agent can do.
The measured verdict is simple: Steinberger is a documented builder and technical steward at the center of OpenClaw’s origin, while OpenClaw itself is now a community and governance project. The useful lesson is to study the boundaries around the work, not turn the founder into a substitute for them.
Sources
- TU Wien profile and founder event record
- Semaphore interview on PSPDFKit’s early story
- Nutrient history of PSPDFKit
- PSPDFKit engineering and maintainability account
- 2021 PSPDFKit investment announcement
- Peter Steinberger’s OpenAI and OpenClaw announcement
- TechCrunch report on the OpenAI move
- OpenClaw Foundation announcement
- OpenClaw repository metadata
- OpenClaw README and security notes
- Gateway trust model
- Tool and agent permissions
- Usage telemetry and update checks
Reference Trail
Sources and further reading
- TU Wien’s public biographyi2c.tuwien.ac.at
- OpenClaw READMEgithub.com
- foundation announcementopenclaw.ai
- company historywww.nutrient.io
- Semaphore interviewsemaphore.io