The Kernel kit is a Docker Sandboxes mixin that gives anyDocumentation Index
Fetch the complete documentation index at: https://tbd-6fc993ce-hypeship-docker-sandboxes-integration.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
sbx agent:
- Kernel CLI (
@onkernel/cli) installed at sandbox creation - Kernel agent skills from
kernel/skills, so Claude Code (and any agent that reads~/.agents/skills) can drive Kernel without prompting - Proxy-managed
KERNEL_API_KEY— your real key stays on the host. Thesbxproxy injects it asAuthorization: Bearer …on requests toapi.onkernel.com. The agent inside the sandbox never sees the secret.
npm install -g @onkernel/cli inside a custom kit.
Quickstart
kernel inside the sandbox → CLI hits api.onkernel.com → the sbx proxy attaches your KERNEL_API_KEY → the request authenticates as you.
The kit’s full spec.yaml, install commands, and allowed domains live in the repo README.
Prerequisites
sbxinstalled and signed in — see Docker’s getting started guide- A Kernel API key from the Kernel Dashboard
- An Anthropic API key from the Anthropic Console if you’re using the built-in
claudeagent
Customizing or extending
For everything not specific to Kernel — loading kits from local paths or OCI registries, stacking multiple mixins, building your own agent kit, debugging the proxy,sbx kit add for running sandboxes — see Docker’s kit reference. The Kernel kit is a standard mixin and composes with anything else you put on top.
Next steps
- Browse
kernel/skillsto see what Claude can do out of the box - Read the Kernel CLI reference for commands available inside the sandbox
- Learn about browser creation, stealth mode, and Profiles for harder automation targets