The first agent native operating system.
Claw OS is a complete Linux-based environment designed for AI agents. It keeps the normal Linux system visible while adding structured OS primitives, scoped permissions, credentials, jobs, and local model runtime management through cos.
Claw OS is built around the idea that an agent should not control a computer through fragile shell guesses alone. It gives the agent explicit operating-system interfaces:
- Structured primitives — apps, files, browser reads, system info, package search, credentials, jobs, and model runtimes are exposed through predictable
coscommands. - Machine-readable results — primitives return structured output so an agent can inspect state without scraping human UI.
- Scoped permissions — risky actions go through capability checks and approvals instead of granting broad access by default.
- Built-in agent entry points —
cos agent setup,cos agent ask, andcos agent chatare first-class OS commands. - Local runtime support —
cos modelandcos enginemanage on-device inference where available.
Pick an entry point:
- WSL — recommended
- Docker / OrbStack — recommended
- Desktop / ISO / VM — experimental
Import the latest WSL rootfs:
$arch = if ($env:PROCESSOR_ARCHITECTURE -eq "ARM64") { "arm64" } else { "amd64" }
$tarball = "claw-os-wsl-$arch.tar.gz"
$url = "https://github.com/xiaoyu-work/claw-os/releases/download/wsl-latest/$tarball"
Invoke-WebRequest $url -OutFile $tarball
wsl --import claw-os C:\WSL\claw-os .\$tarball --version 2
wsl -d claw-osRun the container:
docker pull ghcr.io/xiaoyu-work/claw-os:latest
docker run -d --name claw --privileged -v ./workspace:/home/cos/workspace ghcr.io/xiaoyu-work/claw-os
docker exec -it --user cos claw bash --loginDesktop images are experimental.
cos # list primitives
cos app web read https://example.com # fetch URL → {url, title, text, links}cos agent setup # configure providers and credentials
cos agent ask "find the largest files and tell me why"
cos agent chat # interactive REPLMIT for the kernel and apps. See the NOTICE for vendored sources and their upstream licenses.

