Community-contributed kits for Docker Sandboxes.
Each top-level directory containing a spec.yaml is a kit — a declarative artifact with that spec.yaml and an optional files/ directory, extending sandbox agents with additional capabilities. A kind: sandbox kit may also carry a Dockerfile for the image its sandbox boots from (see kiro/); CI builds and publishes that image as docker.io/sbx/<kit>-image — see PUBLISHING.md.
The remaining top-level directories are shared infrastructure: spec/ (the kit spec implementation), tck/ (the compatibility test kit), scripts/ (maintainer utilities), and skills/.
- Kits overview — what kits are and how to use them
- Kit examples — reference examples for common kit patterns
- Build your own agent kit — step-by-step tutorial using the
ampkit in this repo
Repository docs: CONTRIBUTING.md (how to submit a kit) and PUBLISHING.md (for kits that build their own image).
Contributing a kit or a fix? Read CONTRIBUTING.md first — this repo enforces verified commit signatures, so you'll need GPG or SSH signing set up before your PR can be merged.
Note
Kits are experimental. The kit file format, CLI commands, and experience for creating, loading, and managing kits are subject to change as the feature evolves. Bugs and feature requests for the kits in this repo belong in its issue tracker; general feedback on the kit feature itself goes to docker/sbx-releases.
Kits are passed to sbx run (or sbx create) via --kit. The flag accepts an OCI registry reference, a git+... URL, a local path, or a ZIP archive.
The primary way to consume a kit from this repo is its published OCI artifact on Docker Hub — every kit here is discovered and published automatically (see PUBLISHING.md), so the artifact exists the moment a change merges to main:
sbx run --kit "docker.io/sbx/code-server-kit:latest" claudeOr target this repo directly over git:
sbx run --kit "git+https://github.com/docker/sbx-kits-contrib.git#dir=code-server" claudeThe fragment after # accepts two parameters, both optional:
| Parameter | Purpose | Example |
|---|---|---|
dir |
Subdirectory inside the repo containing the kit | #dir=code-server |
ref |
Git ref to check out — branch, tag, or commit SHA | #ref=v1.0.0 |
Combine them with &:
# Pin to a tag — the recommended form for production use
sbx run --kit "git+https://github.com/docker/sbx-kits-contrib.git#ref=v0.2.0&dir=code-server" claude
# Track a branch (less stable; the kit may change under you)
sbx run --kit "git+https://github.com/docker/sbx-kits-contrib.git#ref=main&dir=code-server" claude
# Pin to an exact commit SHA — fully reproducible
sbx run --kit "git+https://github.com/docker/sbx-kits-contrib.git#ref=abc1234&dir=code-server" claudeWithout ref, sbx clones the default branch shallowly. With a branch or tag, sbx clones at that ref shallowly. With a commit SHA, sbx clones fully and checks out the commit.
You can also use SSH instead of HTTPS for private repos:
sbx run --kit "git+ssh://git@github.com/docker/sbx-kits-contrib.git#dir=code-server" claudeFor local development, point --kit at a directory:
sbx run --kit ./code-server/ claudesbx-kits-contrib/
├── spec/ # Kit artifact types, loading, and validation (importable library)
├── tck/ # Technology Compatibility Kit — test suite using testcontainers-go
├── <kit-name>/ # Individual kits (amp, code-server, pi, etc.)
└── .github/ # CI workflows
- Create a directory at the repo root with your kit name (lowercase, alphanumeric + hyphens):
my-kit/
├── spec.yaml
└── files/
└── home/ # Files copied to /home/agent/ in the container
└── config.json
There's no per-kit test file to write — the shared TestKitTCK in tck/kit_test.go reads a KIT env var pointing at the kit directory and runs the full TCK suite against it.
- Write your
spec.yaml:
schemaVersion: "2"
kind: mixin
name: my-kit
displayName: My Kit
description: "Short description of what this kit does"
permissions:
network:
allow:
- example.com
deny:
- tracker.example.com
environment:
variables:
MY_CONFIG: "/home/agent/config.json"
setup:
install:
- command: "pip install my-tool"
user: "1000"
description: Install my-tool
startup:
- command: ["my-tool", "serve"]
user: "1000"
background: true
description: Start my-tool- Run the TCK locally — from inside the kit's directory:
cd my-kit
../scripts/test-kit.shOr from the repo root, naming the kit:
./scripts/test-kit.sh my-kitExtra flags are forwarded to go test, so ../scripts/test-kit.sh -v -run …
works as expected. If you'd rather invoke go test directly, the equivalent is:
KIT="$PWD/my-kit" go test -v -count=1 -timeout 10m -run TestKitTCK ./tck/...KIT must be an absolute path because go test runs the binary with its
working directory set to the package directory (./tck/).
Windows users: the wrapper is a bash script — run it from Git Bash (ships with Git for Windows) or WSL, not from cmd.exe or PowerShell. If you'd rather skip the wrapper, the direct go test invocation above works in PowerShell too — just substitute $env:KIT = "$PWD\my-kit" for the env-var syntax.
A kit's permissions.network.allow is its complete outbound network contract. The CI e2e job runs with a deny-all default policy, so anything not in your permissions.network.allow is blocked at request time — and any failed request inside an install hook surfaces as sbx create failing.
The non-obvious trap is package managers refreshing every configured source, not just the one you added:
apt-get updatere-fetches metadata for every file in/etc/apt/sources.list[.d/]— including sources the base template added. If any of those returns non-2xx,apt-getexits non-zero even if the package you want is in a different source. For kits built onshell-docker/*-dockertemplates that meansdownload.docker.com(Docker's apt repo, pre-added by the template) needs to be in yourpermissions.network.alloweven if you're only installing something from Ubuntu's main archive.- Ubuntu hosts amd64 packages on
archive.ubuntu.com+security.ubuntu.comand arm64 packages onports.ubuntu.com. List all three for cross-arch coverage; CI is amd64, your Mac is likely arm64. npm install,pip install,cargo,go get, etc. each have their own registry/mirror hosts — declare them too.
The fastest way to find out what your install hooks reach is to run the e2e wrapper. It applies a deny-all global policy on a scoped daemon (--app-name sbx-kits-contrib-tck) for you, then runs TestE2EKit — so you get the network contract and every other e2e assertion from one command:
./scripts/test-kit-e2e.sh my-kitOn failure, dump what the proxy blocked:
APP=sbx-kits-contrib-tck
sbx --app-name $APP ls # find the tck-e2e-* sandbox
sbx --app-name $APP policy log tck-e2e-<short-uuid>Every Blocked requests row is a domain your install or startup hook reached for under deny-all. Add the host (column HOST, e.g. download.docker.com:443) to permissions.network.allow and re-run until the block list is empty.
If you'd rather hand-build a probe sandbox without invoking the test harness (useful when iterating on install scripts without touching the spec), the manual flow is:
APP=sbx-kits-contrib-tck
sbx --app-name $APP policy init deny-all
sbx --app-name $APP create --name probe-my-kit --kit "$PWD/my-kit" <agent> /tmp/sbx-kit-debug || true
sbx --app-name $APP policy log probe-my-kit
sbx --app-name $APP reset --force # wipe the scoped daemonSame --app-name keeps the state isolated from your main sbx and lets sbx --app-name $APP reset --force clean up without touching your day-to-day setup.
The TCK validates your kit automatically:
- Validation —
spec.yamlparses correctly with required fields - Network policy — allowed domains and service auth are well-formed
- Credential policy — credential sources are properly defined
- Commands — install/startup commands are well-formed
- Environment variables — declared env vars are set in the container
- Container files — files from
files/are injected at the correct paths - Security — tmpfs mounts (e.g.,
/run/secrets) are present
The default TCK runs every kit assertion against a fabricated testcontainers-go container — fast, deterministic, no sbx needed. The optional e2e layer goes further: it boots a real sbx sandbox from the kit, then verifies the kit's content actually landed inside the running container. It catches things the default TCK can't — install commands that fail under the non-root agent user, ${WORKDIR} placeholders that resolve differently than expected, agent-kit name mismatches, or agentContext content the engine never renders.
tck/e2e_test.go (build-tag e2e, function TestE2EKit) drives one kit per run — a thin wrapper around the exported tck.RunE2EKit, which any module importing this package can call against its own app-name:
-
Loads the kit at
$KIT_UNDER_TEST. -
Runs
sbx create, shaped by the kit's manifest kind, against a temporary workspace:kind: sandbox→sbx create <kit> --name <unique> <tmpdir>— the kit's own directory is the first positional, no--kitflag or agent argument.sbx create --kit <sandbox-kit> ... <agent>still works with a deprecation warning when<agent>doesn't name a built-in, but hard-fails asmust be kind "mixin", got "sandbox"when it does, since the positional then resolves to the built-in rather than this kit; the positional form drops that deprecation warning for every sandbox kit, not only the built-in-shadowed ones.kind: mixin→sbx create --kit <kit> --name <unique> <agent> <tmpdir>, composing the mixin onto<agent>(claude, or the mixin's declared base-agent affinity).- For a
kind: sandboxkit whose name still collides with a built-in agent, withextractedFromBuiltin: trueset in itstestdata/tck.yaml, the test retries from a temporary copy renamed<name>-e2eand runs the same subtests under that name — seeskills/kit-author/topics/testing.mdfor the full table.
When the wrapper script side-loaded a Dockerfile kit's freshly built image, the create runs with
--pull=neverso that image is what boots (see "Overrides via env" below to change this). -
Verifies, via
sbx exec, that the running sandbox contains:- every
environment.variablesentry, - every file under
files/homeand everycommands.initFiles(with${WORKDIR}resolved to/home/agent/workspace, the real sandbox workdir), - every declared
tmpfsmount (plus the implicit/run/secrets), - the rendered
agentContext— inlined into the AI file (aiFilename) forkind: sandboxkits, or written tokits-agent-context/<kit-name>.mdforkind: mixinkits. - for
kind: sandboxkits whosetestdata/tck.yamldeclarespromptArgs, a non-interactive prompt to the agent.
- every
-
Cleans up with
sbx rm -f <name>— unless the run failed, in which case the sandbox is kept for post-mortem and the test logs thesbx policy log <name>command to inspect it; the next wrapper run removes any such leftover before starting.
sbxonPATH. Install the latest release fromdocker/sbx-releases.- The scoped daemon must be logged in to Docker Hub once per machine. Interactive form:
Non-interactive (using your own Docker Hub username and access token):
sbx --app-name sbx-kits-contrib-tck login
printf '%s' "$DOCKERHUB_TOKEN" | sbx --app-name sbx-kits-contrib-tck login --username "$DOCKERHUB_USERNAME" --password-stdin
- Linux with
/dev/kvmaccessible (for the sailor microVM). On Linux runners and most workstations this is already the case; in CI the workflow doessudo chmod 666 /dev/kvmto relax permissions.
The test is hidden behind the e2e build tag so kit authors running go test ./... see no behavior change. Opt in via the wrapper — the script handles the --app-name scoping and deny-all policy for you, and — for a kit that ships a Dockerfile — builds and side-loads its image so e2e runs against this working tree's build:
# From inside the kit's directory:
cd my-kit
../scripts/test-kit-e2e.sh
# Or from the repo root, naming the kit:
./scripts/test-kit-e2e.sh my-kitIdempotent and non-interactive. Re-running converges on the same state — set the same default policy, run the test, leave the scoped daemon as it was. Overrides via env: APP_NAME (default sbx-kits-contrib-tck), POLICY (default deny-all; set POLICY= to skip the policy step), SBX_KIT_SKIP_IMAGE_LOAD (set to 1 to skip building and side-loading a Dockerfile kit's image and use the published one instead), and SBX_E2E_PULL_POLICY (passed to sbx create --pull; the script sets it to never after a side-load, set it explicitly to override). Extra positional flags are forwarded to go test.
If you'd rather drop to go test directly (note: this skips the policy-set step, so you need to apply deny-all yourself or the network contract isn't tested, and skips the image side-load, so a Dockerfile kit tests against its published image rather than this working tree's build):
KIT_UNDER_TEST="$PWD/my-kit" \
go test -tags=e2e -v -timeout 25m -count=1 -run TestE2EKit ./tck/...KIT_UNDER_TEST must be an absolute path: go test runs each binary with its working directory set to the package directory (./tck/), so a relative path resolves against ./tck/, not the repo root.
To run every kit locally:
for spec in $(find "$PWD" -mindepth 2 -maxdepth 2 \( -name spec.yaml -o -name spec.yml \)); do
./scripts/test-kit-e2e.sh "$(dirname "$spec")"
doneEach subtest (env, files/<path>, tmpfs/<path>, agentContext, prompt) reports independently, so a failure pinpoints which piece of kit content didn't make it into the container.
The e2e legs in .github/workflows/tck.yml run alongside the default test-kit job, via the reusable .github/workflows/e2e.yml. Each signs in to Docker Hub using DOCKERPUBLICBOT_USERNAME / DOCKERPUBLICBOT_WRITE_PAT repo secrets, then runs the e2e test once per detected kit — against three sbx channels:
e2e-releasedownloads the latest taggedsbxrelease. This is the channel users have today, so it gates the PR through the stablee2ejob (the required status check).e2e-nightlydownloads the rollingnightlybuild, so kits are also exercised against whatsbxwill ship next. It is informational only — a broken nightly shows a red check but never blocks merge. Thee2e-nightly-reportjob echoes its outcome to the run log and the job summary.e2e-rcdownloads the latestsbx-releasesprerelease tagged*-rcN, so kits are also exercised against the release candidate currently being validated for the next stable cut. Also informational only — thee2e-rc-reportjob echoes its outcome the same waye2e-nightly-reportdoes.
All e2e legs are skipped on fork PRs because GitHub does not expose secrets to fork-triggered workflows — so for the typical contributor, e2e never runs in CI on their PR, and the reviewer sees a green check that does not cover the e2e assertions.
That makes a local e2e run mandatory before opening a PR from a fork. Run ./scripts/test-kit-e2e.sh <kit> — the script applies the same deny-all baseline CI uses on a scoped daemon (--app-name sbx-kits-contrib-tck), so the network contract gets tested without touching your main sbx state. See Declare every domain your kit needs for the recurring "read the proxy log, add a host, re-run" loop.
By default, mixins use the shell template image. To extend a specific agent (e.g., Claude, Gemini), add the extends field:
schemaVersion: "1"
kind: mixin
name: my-claude-extension
extends: claude
# ...The TCK resolves the parent's template image automatically for well-known agents (shell, claude, codex, copilot, cursor, docker-agent, droid, gemini, kiro, opencode). For other parents, use WithImage:
suite, err := tck.NewSuiteFromDir(".", tck.WithImage("my-custom/template:latest"))Importable library for parsing, validating, and working with kit artifacts:
import "github.com/docker/sbx-kits-contrib/spec"
artifact, err := spec.LoadFromDirectory("./my-kit")Test framework that validates kit artifacts against real containers:
import "github.com/docker/sbx-kits-contrib/tck"
suite, err := tck.NewSuiteFromDir(".")
suite.RunAll(t)For the real-sandbox e2e layer, tck.RunE2EKit is exported the same way, so
another module (e.g. a sibling kit repo with its own kits and its own CI) can
drive the identical assertions this repo's own TestE2EKit uses, scoped to
its own sbx --app-name:
import "github.com/docker/sbx-kits-contrib/tck"
func TestE2EKit(t *testing.T) {
kitPath := os.Getenv("KIT_UNDER_TEST")
tck.RunE2EKit(t, kitPath, tck.E2EOptions{AppName: "my-repo-tck"})
}Pull requests trigger TCK tests automatically:
- Kit changes: only the modified kit is tested
- TCK/spec changes: all kits are tested
- Each kit runs in a separate CI runner on Linux
- The optional e2e legs exercise every detected kit against a real
sbxCLI —e2e-release(latest release, gates the PR),e2e-nightly(rolling nightly, informational only), ande2e-rc(latest release candidate, informational only). See End-to-end (e2e) Tests. Skipped on fork PRs (no Docker Hub secrets).
- Go 1.23+
- Docker (for container-based TCK tests)