Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.superserve.ai/llms.txt

Use this file to discover all available pages before exploring further.

OpenClaw is an open-source personal AI assistant. Run it in a Superserve sandbox so its actions and shell commands stay isolated from your machine.

Via the console

  1. Go to console.superserve.ai and click Create sandbox.
  2. Pick the superserve/openclaw template (OpenClaw and tmux preinstalled).
  3. Open Advanced Options and add your model provider key (e.g. ANTHROPIC_API_KEY) under Environment Variables.
  4. Create the sandbox, open its Terminal, and run openclaw onboard to start the setup wizard.

Via the SDK

npm install @superserve/sdk
export SUPERSERVE_API_KEY=ss_live_...
import { Sandbox } from "@superserve/sdk"

const sandbox = await Sandbox.create({
  name: "openclaw",
  fromTemplate: "superserve/openclaw",
  envVars: { ANTHROPIC_API_KEY: "sk-ant-..." },
})
Open the sandbox in the console, launch the terminal, and run openclaw onboard to start the setup wizard.

Keep it running

Start OpenClaw inside tmux so it survives closing the terminal or browser tab:
tmux new -s openclaw
openclaw gateway run
Press Ctrl+b then d to detach. Reattach later with:
tmux attach -t openclaw

Persist sessions

await sandbox.pause()
await sandbox.resume()