Skip to content

Releases: RishavRaj20/claudeos

ClaudeOS v0.1.0 — first release

Choose a tag to compare

@RishavRaj20 RishavRaj20 released this 28 Jul 22:13

The first release of ClaudeOS — an open-source agent operating system. Claude is the kernel, every AI tool is a process, all agents share one memory.

Highlights

  • Smart routing — regex rules send each task to the right backend (Claude API, local Ollama, or wrapped CLI agents: Claude Code, Gemini CLI, Codex)
  • MCP driver model — capabilities plug in as MCP servers; claudeos mcp install <name> from a curated registry of 9 drivers
  • Semantic cross-agent memory — every run is embedded locally (nomic-embed-text) and relevant past work is injected into every new task, whichever agent produced it
  • Async tasks + WebSocket eventsrun --async, claudeos task, claudeos watch
  • Multi-step pipelines — research → implement → verify chains across providers
  • Native desktop app (this download) — dashboard, run console, memory vault browser, config editor, live event feed. 2.8 MB Tauri build.

Install

Desktop app (macOS, Apple Silicon): download the .dmg below, drag ClaudeOS to Applications. Unsigned build — right-click → Open the first time.

The daemon (required — the app is a client over it):

git clone https://github.com/RishavRaj20/claudeos && cd claudeos
npm install
cp claudeos.config.example.json claudeos.config.json
node src/cli.ts start

Requires Node ≥ 23.6. Optional: Ollama for local models + semantic memory, ANTHROPIC_API_KEY for the direct API provider.