Run AI tools
safely.

Launch Claude Code, Codex, Gemini CLI, or OpenClaw in a secure sandbox with the SDK.

Getting started

Three steps.
That's it.

01

Install the SDK

$ npm install @omnirun/sdk

02

Create a sandbox

await Sandbox.create('agent')

03

Run commands

await sandbox.commands.run('...')

Programmatic access

Or build your own.

Use the SDK to create sandboxes programmatically. TypeScript and Python SDKs available, with full API access for any language.

Read the SDK docs
import { Sandbox } from '@omnirun/sdk'

const sandbox = await Sandbox.create({
  template: 'agent',
  memory: 1024,
})

const result = await sandbox.commands.run('python3 agent.py')
console.log(result.stdout)

await sandbox.kill()

Try it in 60 seconds.

Get an API key and launch your first sandbox. Free tier includes 25 sandbox-hours per month.

Get Free API Key