Ollama has released Pi — the minimal coding agent that forms the foundation of the OpenClaw framework — as a standalone, customizable tool that any developer can launch from the CLI with a single command. The release, announced on X today, effectively open-sources the engine that made OpenClaw possible.
Pi is built on approximately 4,000 lines of TypeScript in a modular monorepo structure. The two core packages — pi-ai (unified LLM communication across providers) and pi-agent-core (tool-calling and agentic loop management) — are the same primitives that power OpenClaw’s agent behavior. Mario Zechner developed the toolkit.
What Developers Get
Running ollama launch pi spins up a fully functional coding agent with no configuration required. From there, the customization surface is wide:
- 2,000+ models from Anthropic, OpenAI, Google, Ollama, and Groq
- Custom extensions, skills, prompt templates, themes, and self-written plugins
- Session persistence and multi-provider model routing built in
- Configuration through a straightforward
~/.pi/agent/directory structure
The default cloud model is Kimi K2.5, a 1-trillion-parameter Mixture-of-Experts model with a 256K context window. At $0.60 per million input tokens and $3.00 per million output tokens, it runs roughly 9x cheaper than Claude Opus 4.5, according to Sci-Tech Today. When paired with Kimi K2.5, Pi gains Agent Swarm capabilities that decompose complex tasks into parallel sub-agent execution paths.
Why It Matters for the OpenClaw Ecosystem
Pi’s standalone release means developers who want OpenClaw-style agent behavior — autonomous tool use, persistent memory, multi-model routing — but need custom models, different permission sets, or domain-specific logic now have a clean starting point without adopting the full OpenClaw framework.
Ollama founder Jeffrey Morgan highlighted Pi’s “elegant minimalism” and noted strong performance on smaller parameter models like the Qwen 3.5 series, positioning it as accessible for local-first development, not just cloud-scale deployments.
The release arrives as the coding agent market intensifies. OpenClaw, Claude Code, Codex CLI, Aider, and Kiro CLI are all competing for developer adoption in the local-first, privacy-preserving agent space. Pi’s advantage is that it’s the actual scaffolding those developers are already building on — just without the OpenClaw wrapper.