boxxkite-sandbox
The missing batteries-included, self-hostable sandbox for agent code execution.
Most "agent sandbox" projects give you raw isolation — a pod, a VM, a
container — and leave you to build the tool surface an LLM agent needs on
top of it. boxxkite is the other half: a complete bash/python/file/
search/process tool surface (15 framework-agnostic tools — LangChain,
LangGraph, CrewAI, AutoGen, LlamaIndex, or plain OpenAI-style function
calling) running inside real Kubernetes pod isolation, hardened with
non-root execution, dropped Linux capabilities, a read-only root
filesystem, default-deny network egress, and secret-scrubbed command
output.
Who this is for: teams building their own agent products that need isolated, multi-tenant code execution at scale — one Kubernetes pod per session, many sessions, many tenants. If you just want your own coding assistant to run shell commands on your own machine, this is the wrong layer.
Install
pip install boxxkite-sandbox
Note the PyPI name is boxxkite-sandbox, not boxxkite (already taken) —
the import path is unaffected: import boxxkite.
Quickstart
git clone https://github.com/EvAlssment/boxxkite.git boxxkite && cd boxxkite
pip install -e .
boxxkite up
boxxkite exec "python3 -c 'print(1 + 1)'"
from uuid import uuid4
from boxxkite import SandboxManager
from boxxkite.tools import create_sandbox_tool_specs
manager = SandboxManager()
session_id = str(uuid4())
await manager.create_session(organization_id=uuid4(), session_id=session_id)
specs = create_sandbox_tool_specs(sandbox_manager=manager, session_id=session_id)
bash_tool = next(s for s in specs if s.name == "bash_tool")
result = await bash_tool.handler(command="echo hello from boxxkite")
boxxkite.tools.adapters converts the same tool specs for LangChain,
LlamaIndex, the OpenAI Agents SDK, or plain OpenAI/Anthropic/Gemini/Mistral
function-calling schemas — see the full integration table and every other
runtime mode (real Kubernetes, docker-compose, the boxxkite CLI) in the
full README.
Security
boxxkite executes arbitrary, agent-generated code — its security posture is
layered defense in depth (non-root, dropped capabilities, read-only
filesystem, per-exec network isolation, no credential injection into
/exec). See SECURITY.md
for the full model and known follow-ups before deploying this beyond local dev.
License
Apache 2.0 — permissive with an explicit patent grant, no restriction on self-hosting or competing hosted use.
Links
GitHub · Full README · Docs · Issues
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file boxxkite_sandbox-0.2.4.tar.gz.
File metadata
- Download URL: boxxkite_sandbox-0.2.4.tar.gz
- Upload date:
- Size: 414.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce771f84104f62eb8baefb42a2993f598b6d28530238f9f3a678d7feb0f8a9d5
|
|
| MD5 |
6d014d1181e4cd3c2afb814acd8f67bb
|
|
| BLAKE2b-256 |
2748f09c3ae58b43c58200866f3857ac12515bc88789abb8dd7cd4f2d752c176
|
File details
Details for the file boxxkite_sandbox-0.2.4-py3-none-any.whl.
File metadata
- Download URL: boxxkite_sandbox-0.2.4-py3-none-any.whl
- Upload date:
- Size: 267.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d96e2fb210bf03d02fc860e9353101c0e1cc93461a16d6a3874738e30b1533a
|
|
| MD5 |
3d6738959f07472052cc6e5c4370d4f1
|
|
| BLAKE2b-256 |
cfd671c35994655e4c0c2916ee47f836a6e55bd53340fbf445530f0495f807e1
|