A Claude Code plugin marketplace for disposable sandbox compute.
Run ad-hoc, heavy, or untrusted code off your machine in disposable CreateOS Sandboxes — straight from your Claude Code session.
Heavy builds, flaky test suites, and untrusted code don't belong on your laptop. createos-sandbox gives Claude a skill + slash commands that offload them to throwaway CreateOS Sandboxes — created and running your first command in roughly 200 ms, self-destructing when done — so your machine stays free, your deps stay isolated, and untrusted code never touches local state.
- 🧨 Disposable — one-shot offload stages a dir, runs, pulls artifacts, then auto-destroys. Box-side changes never touch local unless you ask.
- ⚡ Fast — ~200 ms from create to first command; parallel fanout across N boxes for matrix builds and split test suites.
- 🔒 Isolated — untrusted code runs in a disposable Sandbox, not your shell. Egress can be locked to an exact allowlist.
- 🔁 Live loops — a reusable per-repo box with file sync, port tunnels, and public HTTPS expose for real dev sessions.
- 💤 Cheap to keep —
pausesnapshots a warm box (deps and all) at zero compute cost;resumebrings it back in a handful of seconds.
# 1. Add the marketplace + install the plugin
/plugin marketplace add NodeOps-app/createos-claude-plugins
/plugin install createos-sandbox@createos
# 2. Offload a heavy test run to a throwaway box (auto-destroys)
/createos-sandbox:offload . "npm ci && npm test"The createos CLI auto-installs on first use. Sign in once with createos login (browser OAuth, run it in your own terminal) or export CREATEOS_API_KEY=<key>; check with cos auth. Prefer a local checkout? See Install.
| Plugin | What it does |
|---|---|
| createos-sandbox | Offload, parallel fanout, scratch shell, reusable box with sync, port tunnel, public HTTPS expose, private-network clusters, BYO-S3 disk mounts, WireGuard VPN, and snapshot/fork — all driving the authed createos CLI. |
The marketplace currently ships one plugin; more CreateOS plugins land here as siblings.
| Command | What |
|---|---|
/createos-sandbox:offload <dir> <cmd> |
one-shot: stage → run → pull artifacts → destroy |
/createos-sandbox:fanout <dir> <cmd1> [cmd2 …] |
run each command in its own throwaway box, in parallel |
/createos-sandbox:shell |
instant throwaway interactive Linux (destroyed on exit) |
/createos-sandbox:up · run · sync · down |
reusable per-repo box + file sync for live dev loops |
/createos-sandbox:tunnel <port> |
forward a box port to 127.0.0.1 (private) |
/createos-sandbox:expose <port> |
public HTTPS URL for a box port |
/createos-sandbox:cluster … |
N boxes on one private network, name-addressable |
/createos-sandbox:disk … |
mount your own S3 bucket into the project box |
/createos-sandbox:vpn … |
WireGuard L3 into your private networks |
/createos-sandbox:fork |
snapshot the project box → independent clone |
/createos-sandbox:pause · resume |
park the warm box at zero compute cost, then restore it exactly |
/createos-sandbox:template … |
build a custom image so boxes boot with the toolchain already installed |
/createos-sandbox:status |
show active box + sync + tunnels + cluster |
Full flags, networking guide, and heavy-build tips live in the plugin README.
From GitHub (recommended):
/plugin marketplace add NodeOps-app/createos-claude-plugins
/plugin install createos-sandbox@createos
From a local checkout:
git clone https://github.com/NodeOps-app/createos-claude-plugins
/plugin marketplace add /path/to/createos-claude-plugins
/plugin install createos-sandbox@createos
Dev (instant, no install):
claude --plugin-dir /path/to/createos-claude-plugins/createos-sandbox
/reload-plugins # after editing plugin files- CreateOS account — the
createosCLI auto-installs on first use. Opt out withCOS_NO_AUTOINSTALL=1. - Sign-in —
createos loginin your own terminal (interactive browser OAuth; Claude can't drive a TTY prompt), orexport CREATEOS_API_KEY=<key>to skip the browser entirely.cos authreports which is active. - Host tools:
jq,tar,bash,base64;perlfor ANSI/path handling;curlfor the one-time CLI install.
- One-way by default — offload uploads and sync are laptop → box; box-side writes never flow back unless you opt in (
-2). - Excludes —
.git,node_modules,target,.venv, and other regenerable dirs are stripped from uploads by default. - Scoped —
cosonly ever touches boxes it created (cos-*) or the project box in its statefile. Your other sandboxes are never touched. - Quota — external keys have been observed to allow 2 boxes running at once, with a daily creation cap. This is observed behaviour, not published policy — budget
clusterandfanoutagainst it and expect excess jobs to queue rather than fail.
createos/ # marketplace root
├─ .claude-plugin/
│ └─ marketplace.json # marketplace manifest
└─ createos-sandbox/ # the plugin
├─ .claude-plugin/plugin.json
├─ commands/ # slash commands
├─ skills/ # the using-createos-sandbox skill + references/
├─ hooks/ # SessionStart driver-path + PreToolUse offload-hint
├─ scripts/cos # the CLI driver
└─ README.md
Issues and PRs welcome. The plugin is a thin Claude Code surface over the createos CLI — most command logic lives in createos-sandbox/scripts/cos. Keep the slash-command, skill, and CLI surfaces aligned.
- 🌐 createos.sh — CreateOS platform
- 📖 Claude Code plugins — how plugins & marketplaces work
- 📦 Plugin README — full command & flag reference