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.

Pair Kilocode with a Superserve sandbox to run its generated commands and file edits in an isolated VM.

Via the console

  1. Go to console.superserve.ai and click Create sandbox.
  2. Pick the superserve/node-22 template.
  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 install Kilocode.

Via the SDK

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

const sandbox = await Sandbox.create({
  name: "kilocode",
  fromTemplate: "superserve/node-22",
  envVars: { ANTHROPIC_API_KEY: "sk-ant-..." },
})

await sandbox.commands.run("npm install -g @kilocode/cli")
Open the sandbox in the console, launch the terminal, and run kilocode.

Persist sessions

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