Skip to main content

Secure sandboxed code execution and agent toolbox

Project description

vital-agentbox

Secure sandboxed code execution for AI agents. Runs Python and shell commands inside a Chromium + Pyodide (WASM) sandbox with two independent security boundaries — no host filesystem or network access from agent code.

Features

  • Dual-layer isolation — Chromium renderer sandbox + WASM linear memory
  • Virtual shell — tree-sitter-bash parser with 30+ builtins on in-memory FS
  • Python execution — Pyodide (CPython 3.11 compiled to WASM)
  • Git operations — isomorphic-git on Emscripten MemFS with S3/MinIO storage
  • AI-friendly editingedit builtin with fuzzy + AST-aware matching
  • LangChain & Deep Agents — toolkit, tools, and sandbox backend integrations
  • Scalable — orchestrator + worker architecture with Redis routing

Box types

Type Description
MemBox Ephemeral in-memory sandbox (default)
GitBox MemBox + isomorphic-git + pluggable storage (S3/MinIO/local)
FileSystemBox Local dev only, backed by host directory

Install

# Lightweight client (for LangGraph / Deep Agent apps)
pip install vital-agentbox[client]

# Sandbox worker (runs Chromium + Pyodide)
pip install vital-agentbox[worker]
playwright install chromium

# Orchestrator (routes requests to workers, no Chromium)
pip install vital-agentbox[orchestrator]

# LangChain integration
pip install vital-agentbox[langchain]

Quick start

from agentbox.client import AgentBoxClient

client = AgentBoxClient("http://localhost:8090")

# Create a sandbox
sandbox = client.create_sandbox_sync(box_type="mem")

# Run Python
result = sandbox.execute_sync("print(2 + 2)")
print(result.stdout)  # "4\n"

# Run shell commands
result = sandbox.execute_sync('echo "hello" > /file.txt && cat /file.txt', language="shell")
print(result.stdout)  # "hello\n"

# AI-friendly file editing
result = sandbox.execute_sync(
    "edit /file.txt --old 'hello' --new 'world'",
    language="shell",
)

# Cleanup
sandbox.destroy_sync()

LangChain integration

from agentbox.langchain import AgentBoxToolkit

toolkit = AgentBoxToolkit(base_url="http://localhost:8090")
tools = toolkit.get_tools()
# → [CodeExecutionTool, ShellExecutionTool, FileWriteTool, FileReadTool]

Docker

# Full stack (orchestrator + 2 workers + MinIO)
docker compose up

# Single worker
docker run -p 8090:8000 --shm-size=2g agentbox-worker

Documentation

Full documentation is in the docs/ directory:

System requirements

  • Python ≥ 3.11
  • Chromium (via playwright install chromium) — worker only
  • Redis — orchestrator only
  • For PDF generation: pandoc + LaTeX

License

Apache 2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vital_agentbox-0.1.4.tar.gz (173.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vital_agentbox-0.1.4-py3-none-any.whl (223.5 kB view details)

Uploaded Python 3

File details

Details for the file vital_agentbox-0.1.4.tar.gz.

File metadata

  • Download URL: vital_agentbox-0.1.4.tar.gz
  • Upload date:
  • Size: 173.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.2

File hashes

Hashes for vital_agentbox-0.1.4.tar.gz
Algorithm Hash digest
SHA256 5099a4e1d1bce94b4613042b94a03addda1d598b81c354cdf5d7755dd86eebba
MD5 8ed394adae2cbad84059b570ad8ddf41
BLAKE2b-256 8295c8134de413283841821dfbcc246bf7497c55bc6e42430c891914d2560899

See more details on using hashes here.

File details

Details for the file vital_agentbox-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: vital_agentbox-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 223.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.2

File hashes

Hashes for vital_agentbox-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 8e6e33c308e1a0a796b1799d63484747f7709eb25823f6e4f1c1b723d2cb8930
MD5 4b9ae94f73198ca6fcbfc5c27d3a4ca8
BLAKE2b-256 a6b83c58064c10e853ec133624c6ae61aeac0b753704558fe8cb7e2cf7a95588

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page