BETA  — cloud sandboxes for AI agents, free during beta —  NO CREDIT CARD REQUIRED
Vibe Engine
log insign up
BETA · FREE · NO CREDIT CARD

Cloud Sandboxes
for AI Agents

Spin up secure, isolated cloud environments in milliseconds. Run AI agents, execute code, and deploy — all without touching your local machine.

get started freeview docs →
$npm install @vibengine/sdk
$pip install vibengine
sandbox.ts
// section 01

Everything you need
to run AI in the cloud

isolation
Secure Sandboxes

Each task runs in its own Firecracker microVM. Millisecond startup, zero blast radius — your host is untouched.

<500ms
Instant Startup

Spin up a full dev environment in under 500ms. No cold starts, no warmup, no waiting.

py · js
Multi-Language SDK

First-class Python and JavaScript support. Drop in and start executing in two lines of code.

×100
Parallel Execution

Run 1 or 100 sandboxes simultaneously. Scale horizontally without changing your code.

stateless
Cloud Native

No local setup required. Everything runs in the cloud with full outbound network access.

custom
Template System

Pre-built images for common AI workloads, or bring your own Dockerfile. Your environment, your rules.

// section 02

From idea to execution
in 3 steps

01
Install the SDK

One command. Works with Node.js and Python.

$ npm install @vibengine/sdk
# or for Python $ pip install vibengine
02
Create a Sandbox

One await. Returns a live Firecracker microVM.

import { Sandbox } from '@vibengine/sdk' const sbx = await Sandbox.create('base')
03
Run Anything

Shell commands, scripts, long-running processes. Streamed back in real time.

await sbx.commands.run('python train.py') // stdout → Epoch 1/10: loss=0.423 // stdout → Epoch 2/10: loss=0.381
// section 03

See it in action

1import { Sandbox } from '@vibengine/sdk'23async function runPipeline() {4  // create isolated cloud environment5  const sbx = await Sandbox.create('ml-base')67  // write script into the sandbox8  await sbx.files.write('pipeline.py', script)910  // execute it — streamed output11  const result = await sbx.commands.run(12    'python pipeline.py'13  )1415  return result.stdout16}
sandbox · stdout
$ python pipeline.py output shape: torch.Size([32, 10]) mean: -0.0234 execution complete · 287ms sandbox destroyed · 0 resources leaked
free during beta · no credit card · no local setuptry it free →
Vibe Engine
BETA · FREE · NO CREDIT CARD

Start building
in the cloud

Secure Firecracker microVMs. Full Python and JavaScript SDK.
No local setup. No lock-in. Free during beta.

get started free
$ npm install @vibengine/sdk$ pip install vibengine$ read the docs →