AI NEWS
Loading latest AI news…
$VIBECLAW CA 8KWm16hz9D7nViRT6ZsxAqUreLqvF6euEoyGKaELpump Copied!
🦀 VibeClaw Stars GitHub
AGPL-3.0 · Crustacean Friendly

Run OpenClaw Securely in your browser in 5s

The world's first ONE CLICK deployment of a private, secure and instantly usable OpenClaw server.

VibeClaw
VibeClaw  ·  OpenClaw Terminal  ·  VB-1
Terminal
boot-sandbox.js
import { AgentContainerManager } from 'vibeclaw';

// Load the OpenClaw runtime
const snapshot = await fetch(OPENCLAW_VFS_URL).then(r => r.json());

const manager = new AgentContainerManager({
  maxContainers: 10,
  defaultExecutionTimeoutMs: 30_000,
});

// Spawn gateway — your key goes direct to Anthropic
const gw = await manager.spawn({
  id: 'openclaw-gateway',
  vfsSnapshot: snapshot,
  cwd: '/openclaw',
  env: {
    OPENROUTER_API_KEY: OPENROUTER_API_KEY,
    NODE_ENV: 'production',
    OPENCLAW_PORT: '18789',
  },
});

await manager.execute(gw.id, `
  const loader = require('/openclaw/loader.cjs');
  loader.registerStubs();
  loader.setupEnv();
`);

console.log('🦀 OpenClaw Sandbox Gateway online!');
POWER
🦞 CRAC STUDIO
View Demos

The fastest and safest way to try OpenClaw

Your Key, Your Browser

API calls go direct from your browser to Anthropic. Your key never touches our servers. Close the tab and it's gone.

Real Node.js Container

This isn't a demo — it's a real Node.js runtime with a virtual filesystem, 40+ shimmed modules, require(), npm packages, and full OpenClaw agent workspace.

Live Gateway Mode

Already running OpenClaw? Connect to your live gateway via WebSocket. See all sessions, agents, files, skills, cron jobs, metrics — everything.

Full Dashboard

3-column gateway dashboard with streaming chat, session management, workspace file browser, skill status, cron jobs, cost tracking, and live logs.

Flavours

Swap sandbox personalities in one click. TinyClaw multi-agent orchestrator, default Claw assistant, or build your own — different agents, skills, and system prompts per flavour.

WebGPU Local LLM

Run Qwen2.5-Coder 1.5B locally via WebGPU — no API key, no network. Pick 🦀 WebGPU Local in the model selector. ~900MB download, then fully offline.

Build your own server

Configure an OpenClaw server like you'd spec a Mac. Pick your agents, skills, personality, and workspace — then preview it live in your browser. When you're happy, deploy it anywhere.

Configure

Pick agents, skills, prompts, and workspace files from the component library.

Preview

Test your server live in the browser. Chat with it. Tweak until it's perfect.

Deploy

Download, Docker, CLI, or one-click deploy to Railway, Fly.io, Render & more.

Try it live

Common questions

What's the difference between Sandbox and Live mode?
Sandbox boots an isolated OpenClaw container right in your browser — just paste your Anthropic API key and start chatting. No server, no install, nothing to configure.

Live connects to your actual running OpenClaw gateway via WebSocket. You get the full dashboard — all sessions, agents, files, skills, cron jobs, cost tracking, and logs from your real system.
Is my API key safe?
Yes. In sandbox mode, your Anthropic API key stays in your browser and goes directly to Anthropic's API. It's never sent to our servers. It's stored in localStorage so you don't have to re-enter it, but you can clear it anytime. In live mode, no API key is needed — just the gateway token from your OpenClaw config.
How does the sandbox actually work?
vibeclaw uses almostnode — a browser-native Node.js runtime with a virtual filesystem, 40+ shimmed modules, and npm support. It creates a real container, loads the OpenClaw VFS snapshot (67 files), and bootstraps the full runtime. Chat calls go direct to the Anthropic API from your browser.
What can I do in live gateway mode?
Everything. The dashboard shows all your sessions with token usage bars, agent identity and workspace files (SOUL.md, MEMORY.md, etc.), active and available skills, cron jobs with status, daily cost sparklines, connected nodes, gateway logs, and full streaming chat. It uses the same 80+ method JSON-RPC API that the OpenClaw control panel uses.
Do I need to install anything?
No. For sandbox mode, just open the page and paste your Anthropic API key. For live mode, you need a running OpenClaw gateway — paste the gateway token and URL (defaults to localhost:18789 via the Vite proxy).
What are Flavours?
Flavours are preconfigured sandbox personalities. Each flavour defines its own agents, skills, system prompt, and workspace layout. The default 🦀 Claw is a coding assistant. 🦞 TinyClaw is a multi-agent orchestrator with 5 agents, team routing, and parallel fan-out. Select a flavour from the dropdown before booting — the entire sandbox (and gateway dashboard) adapts to match.
What about WebGPU / local models?
Now available! Select 🦀 WebGPU Local (1.5B) in the model picker. It uses Qwen2.5-Coder 1.5B (4-bit quantized, ~900MB) running entirely via WebGPU compute shaders in your browser — no API key, no network after the first download. Requires Chrome 113+ or a WebGPU-enabled browser.
Can I use this in production?
The sandbox is experimental — great for trying OpenClaw, testing prompts, and quick prototyping. For production workloads, run a real OpenClaw gateway and use live mode to monitor and chat with it from anywhere.