
Why run OpenClaw on an Orgo computer
| Local laptop | Orgo cloud computer | |
|---|---|---|
| Uptime | Off when the laptop sleeps | Continuous |
| Reachable from other devices | Same network only | Anywhere |
| Persistent state | Tied to one machine | Survives restarts |
| Setup per device | Reinstall each time | One install, one config |
| Isolation | Full access to your personal files, accounts, and credentials | Isolated VM. Only the files and credentials you put on it. |
Isolation
OpenClaw is designed to take actions on a computer: install skills, run shell commands, control applications, hit APIs with your credentials. On a personal laptop that means the agent has the same access you do, including your home directory, browser sessions, SSH keys, and~/.aws/credentials. On an Orgo computer the blast radius is the VM. The agent has access to whatever you install or paste into that VM and nothing else. Delete the computer and the state is gone.
Install
Create the computer
Open orgo.ai/workspaces and create a computer with at least 8 GB RAM and 4 CPU cores.
Open a terminal on the computer
Open the computer in the dashboard and launch Terminal from the taskbar.
Run the installer
openclaw CLI, and starts the onboarding wizard. The wizard configures a model provider, API key, and gateway port (default 18789).Install the background daemon
systemd --user service that auto-starts the gateway on every boot.Install via the Orgo SDK
Drive the install from your laptop. Everycomputer.bash(...) call runs on the cloud computer.
~/.openclaw/ on disk, so the daemon survives computer.stop() and computer.start() cycles.
Gateway
The gateway accepts messages from Slack, Discord, Telegram, iMessage, and other platforms. Set it up once on the computer:https://www.orgo.ai/api/desktops/{instance_id}/proxy/<path> (requires your Orgo API key).
Installing skills
OpenClaw skills are distributed through ClawHub:~/.openclaw/skills/ and persist across restarts.
Sizing
| Workload | RAM | CPU |
|---|---|---|
| Single user, lightweight skills | 8 GB | 4 cores |
| Multiple platforms, browser skills | 16 GB | 4 to 8 cores |
| Multi-agent or long-running flows | 32 GB+ | 8 cores |
Tips
- Config and skills live in
~/.openclaw/. - View logs with
journalctl --user -u openclaw -f.