Your private AI assistant that runs 24/7 on your desk.
Plug in. Scan QR. Done. No cloud required.
ClawBox is OpenClaw OS β the operating system for ClawBox hardware, a private AI assistant on NVIDIA Jetson. Local-first: your files, chats, and settings live on the box, and with local models nothing leaves it β cloud AI (Claude, GPT, Gemini) is strictly opt-in. On first boot it broadcasts a WiFi access point so you can set it up from any phone; then it joins your network and serves a Chrome OS-style desktop with built-in apps.
The OpenClaw AI agent controls the entire device through MCP (Model Context Protocol) tools β making ClawBox an OS the AI can operate, not just a UI the user clicks through:
A real session: the agent introduces itself while executing live tool calls (exec, glob).
| Feature | Description |
|---|---|
| π§ 5-minute setup | Guided wizard: WiFi β updates β password β AI provider β messaging β done |
| π₯οΈ Desktop environment | Chrome OS-style desktop with windowed apps, taskbar, and system tray |
| π€ AI-controlled OS | ~50 MCP tools let the AI agent operate the entire device |
| π Local-first | Your data stays on the box; no telemetry, no data collection. Cloud AI only if you opt in |
| π§ Flexible AI | ClawBox AI out of the box β or Claude, GPT (API or ChatGPT plan), Gemini, OpenRouter, local Ollama / llama.cpp |
| π Browser automation | AI controls a real browser β fills forms, scrapes data, posts content |
| π¬ Multi-platform | Telegram (pairing-protected), web panel, desktop chat |
| π» Built-in apps | Terminal, file manager, VS Code, remote desktop, app store, AI chat, ClawKeep backups |
| π οΈ Code assistant | AI builds and deploys desktop webapps through iterative coding |
| β‘ Always-on | 7β15 W power. Runs 24/7 for ~β¬39/year in electricity |
| Component | Spec |
|---|---|
| Processor | NVIDIA Jetson Orin Nano 8GB (Super) |
| AI Performance | 67 TOPS |
| Storage | 512GB NVMe SSD |
| Power | 7β15 W typical, USB-C |
| Size | 100 Γ 79 Γ 31 mm |
Also available: ClawBox Workstation β NVIDIA DGX Spark, ~1 PFLOP, runs frontier-scale local models. Details on clawbox.tech.
Full documentation lives at docs.clawbox.tech:
| Quickstart Β· First Boot | Unbox β power β talk, and the setup wizard |
| Technical Reference | Quick Reference (one page), then architecture, networking, filesystem, auth, AI providers, updates |
| Troubleshooting Β· Recovery | Symptom-first diagnostic ladders and ordered recovery options |
| Agent Interface (MCP) | The full device-tool catalog and the clawbox CLI |
| llms.txt | Machine-readable docs index β point your AI agent here |
| Supported | |
|---|---|
| Device | NVIDIA Jetson Orin Nano 8GB (Super) |
| OS image | JetPack 6.2 (Ubuntu 22.04 / L4T R36.x) β download |
β οΈ JetPack 7.x (Ubuntu 24.04) is not supported yet. NVIDIA's newest images default to JetPack 7 β flash JetPack 6.2 instead. On 24.04 the installer fails on Python's externally-managed-environment policy (PEP 668), among other differences. JetPack 6.2 is the platform every shipped ClawBox runs.
The installer expects to run from /home/clawbox/clawbox as the clawbox
user's checkout (the same layout shipped devices use):
id -u clawbox >/dev/null 2>&1 || sudo useradd -m -s /bin/bash clawbox
sudo git clone https://github.com/ID-Robots/clawbox.git /home/clawbox/clawbox
sudo chown -R clawbox:clawbox /home/clawbox/clawbox
cd /home/clawbox/clawbox
sudo bash install.shThe install provisions everything from scratch (20β40 min on a fresh image). When it finishes, connect to the ClawBox-Setup WiFi network (open, no password) and navigate to:
http://clawbox.local/http://10.42.0.1/
From the UI: open the System Update app. Over SSH: sudo clawbox update.
Updates are release-tag based and never touch your data β details in
Updating ClawBox.
Layer 1 β System bootstrap. install.sh provisions the Jetson from scratch: system packages, Node.js 22 + Bun, the web OS build, the OpenClaw gateway (version-pinned), systemd services, mDNS, and the captive-portal WiFi access point for first-boot setup.
Layer 2 β Setup wizard. On first boot (or after factory reset) a guided ~5-minute wizard covers WiFi (with language picker), updates, device password, AI provider (API key or OAuth sign-in), and Telegram β see First Boot.
Layer 3 β Desktop environment. A Chrome OS-style desktop served from the device β the built-in apps above in draggable windows, with taskbar, system tray, and a responsive mobile layout. The terminal is xterm.js over a WebSocket PTY; remote desktop is noVNC.
Layer 4 β AI agent integration. The OpenClaw agent operates the device through MCP tools β shell, files, real-browser control, app installs, system power, preferences, and a code assistant that builds and deploys desktop webapps. The clawbox CLI exposes the same surface to shell users. Full catalog: Agent Interface.
Browser (http://<box-ip>)
β
βββ Port 80: Next.js (production-server.js)
β βββ /setup β Setup wizard (React SPA)
β βββ /login β Authentication
β βββ / β Desktop environment (post-setup)
β βββ /setup-api/* β 90+ API routes (system, files, code, browser, β¦)
β βββ /api/* β Proxy to OpenClaw gateway
β βββ WebSocket β Proxy to gateway + terminal PTY
β
βββ Port 3006: Terminal WebSocket PTY server
β
βββ Port 18789: OpenClaw Gateway (token-gated; all user traffic goes through port 80)
β βββ AI Agent (MCP tools β controls the entire OS)
β βββ Control UI
β βββ WebSocket (real-time chat)
β βββ REST API
β
βββ Port 18800: Chromium CDP (browser automation)
Node.js runs the production server because Bun doesn't support http.Server upgrade events needed for WebSocket proxying. The deep dive lives in the Architecture reference.
| Layer | Technology |
|---|---|
| Frontend | Next.js 16, React 19, Tailwind CSS 4 |
| Language | TypeScript 5 |
| Runtime & tooling | Node.js 22 (production), Bun (dev/build/packages) |
| AI Engine | OpenClaw via MCP |
| Local Models | Ollama + llama.cpp (Llama, Gemma, Mistral, β¦) |
| Networking | NetworkManager (WiFi AP), Avahi (mDNS) |
| Testing | Vitest + Playwright |
Full runtime topology in the Architecture reference.
βββ config/ Systemd services, captive-portal DNS
βββ docs-site/ docs.clawbox.tech source (Mintlify)
βββ mcp/ MCP server + CLI (AI agent interface to the OS)
βββ scripts/ WiFi AP, terminal server, voice/TTS, Jetson tuning
βββ src/
β βββ app/ Next.js App Router (pages + 90+ API routes)
β β βββ setup-api/ WiFi, AI models, Ollama, apps, files, browser, code, system
β βββ components/ Setup wizard, desktop environment, built-in apps
β βββ hooks/ Window manager, Ollama model management
β βββ lib/ Config, network, auth, OAuth, i18n, updater, code-projects
β βββ tests/ Unit + API route tests
β βββ middleware.ts Captive portal detection + session auth
βββ production-server.js Node.js HTTP + WebSocket proxy wrapper
βββ install.sh Full system installer (idempotent)
bun install
bun run dev # Port 3000
bun run dev:privileged # Port 80 (requires root)
bun run build
bun run lint
bun run test # Unit tests (Vitest)| Variable | Default | Description |
|---|---|---|
PORT |
80 |
Web server port |
GATEWAY_PORT |
18789 |
OpenClaw gateway port |
NETWORK_INTERFACE |
wlP1p1s0 |
WiFi interface for AP |
CANONICAL_ORIGIN |
http://clawbox.local |
Default redirect origin |
ALLOWED_HOSTS |
clawbox.local,10.42.0.1,10.43.0.1,localhost |
Trusted hostnames |
SESSION_SECRET |
Auto-generated | Session cookie signing key |
OLLAMA_HOST |
http://127.0.0.1:11434 |
Ollama server URL |
CLAWBOX_ROOT |
/home/clawbox/clawbox |
Project root directory |
Additional options (OAuth client IDs, ClawBox AI, llama.cpp tuning) live in .env.example.
Pull requests are welcome:
- Target the
betabranch β it's the integration branch;maincarries tagged releases. - Every PR runs CI (unit tests + e2e + a full-install e2e) and an automated CodeRabbit review.
- Keep PRs focused β one issue or feature per PR.
- π The UI ships in 10 languages β string changes go in
src/lib/translations.tsfor all locales.
ClawBox is released under the ClawBox Source Available License v1.0. Free to use, modify, and redistribute for personal, non-commercial purposes. Commercial use requires a separate license from IDRobots Ltd. β contact yanko@idrobots.com.
clawbox.tech Β· docs Β· Discord
Built with β€οΈ by ID Robots in the EU πͺπΊ β powered by OpenClaw


