Skip to main content

A secure, self-hosted runtime for isolated AI agent execution

Project description

AgentNest

AgentNest

The open-source runtime for secure AI agent execution.

CI Python License

AgentNest gives AI agents disposable, policy-controlled environments for Python, shell commands, files, packages, browsers, GPUs, and Git work. It is self-hosted, Python-first, and deliberately not another cloud or cluster orchestrator.

from agentnest import Sandbox

with Sandbox("python:3.12-slim", timeout=60) as sandbox:
    sandbox.write_file("main.py", "print('Hello from isolation')")
    result = sandbox.exec_shell("python main.py")
    print(result.stdout)

Why AgentNest

  • Secure defaults: non-root, read-only root, no capabilities, denied networking, limits, cleanup
  • Egress allowlisting: let code reach pypi.org and nothing else, with every connection logged
  • Agent-native: stateful Python sessions, forkable state, async, streaming, secrets, approvals, audit events
  • Non-destructive timeouts: a slow command is killed on its own; the sandbox and its state survive
  • Crash-safe: every resource is labelled with a deadline, so agentnest prune reaps orphans
  • Proven, not promised: a suite of escape attempts runs on every commit
  • Self-hosted & extensible: your Docker or Kubernetes; third-party backends via entry points

Try it in one command (needs Docker):

pip install agentnest
agentnest demo

[!WARNING] Containers share the host kernel. Choose an isolation boundary appropriate for your threat model. Read the security model before running hostile multi-tenant workloads.

Install

pip install agentnest
agentnest doctor

Optional extras:

pip install 'agentnest[kubernetes]'
pip install 'agentnest[server]'
pip install 'agentnest[mcp]'
pip install 'agentnest[all]'

Capabilities

from agentnest import NetworkPolicy, Sandbox, Secret, SecurityPolicy

policy = SecurityPolicy(
    network=NetworkPolicy.denied(),
    max_output_bytes=2_000_000,
    require_image_digest=True,
)

with Sandbox(
    "python@sha256:<digest>",
    security_policy=policy,
    environment={"TOKEN": Secret("redacted-in-output")},
    memory="512m",
    cpus=1.0,
) as sandbox:
    for event in sandbox.stream_shell("python main.py"):
        print(event.data, end="")

    checkpoint = sandbox.snapshot("workspace.tar")
    for artifact in sandbox.artifacts("output/**/*"):
        print(artifact.path, artifact.sha256)

Egress allowlisting

Give code the network it needs and nothing more. Denied is still the default; an allowlist routes traffic through a filtering proxy that only lets approved domains through.

from agentnest import NetworkPolicy, Sandbox, SecurityPolicy

policy = SecurityPolicy(network=NetworkPolicy.allowlist(domains=("pypi.org", "files.pythonhosted.org")))
with Sandbox("python:3.12-slim", security_policy=policy) as sandbox:
    sandbox.exec_shell("pip install --user requests").check()   # reaches PyPI
    blocked = sandbox.exec_python("import urllib.request; urllib.request.urlopen('https://evil.example')")
    assert not blocked.ok                                       # everything else is refused

Stateful sessions

A persistent interpreter keeps variables and imports across calls — the code interpreter model, self-hosted.

with Sandbox("python:3.12-slim") as sandbox:
    session = sandbox.python_session()
    session.run("import pandas as pd; df = pd.DataFrame({'x': [1, 2, 3]})")
    print(session.run("df['x'].sum()").check().result)   # -> 6

Forkable sandboxes

Branch a running sandbox's state, explore several continuations, keep the one that worked — parallel A/B attempts and agent tree search without re-running from scratch.

with Sandbox("python:3.12-slim") as base:
    base.write_file("state.json", "{}")
    attempt_a = base.fork()
    attempt_b = base.fork()   # independent copies; neither sees the other's writes

Also included: AsyncSandbox, deterministic Template builds, bounded SandboxPool, Git workspace helpers, browser/GPU presets, MCP tools, YAML profiles, a CLI, and an authenticated remote API.

How it compares

AgentNest is a self-hosted control layer, not a hosted sandbox service. The distinction that matters: it decides what an agent's code is allowed to do and records what it did, across whatever backend you run.

AgentNest E2B Modal Sandboxes microsandbox llm-sandbox
Self-hosted, no account ⚠️ hosted ⚠️ hosted
Domain egress allowlist
Stateful REPL sessions ⚠️ partial
Forkable state
Approval hooks + audit events
Pluggable isolation backend ⚠️
Auditable in an afternoon (~4k LOC) ⚠️

See benchmarks for measured cold-start and round-trip latencies.

Agent frameworks and MCP

Give an existing agent a sandboxed code tool without changing its security story:

from agentnest.integrations.langchain import build_langchain_tool

tool = build_langchain_tool(network_enabled=False)   # a LangChain StructuredTool

There is a smolagents executor and a framework-neutral SandboxRunner too. Or expose AgentNest over the Model Context Protocol so Claude Code, Cursor, or Claude Desktop can run code safely in one line of config:

{ "mcpServers": { "agentnest": { "command": "agentnest", "args": ["mcp"] } } }

See the integration guide.

Architecture

flowchart LR
    App["Agent application"] --> API["Sandbox API"]
    API --> Guard["Policy · approvals · events"]
    Guard --> Contract["RuntimeBackend"]
    Contract --> Docker["Docker / gVisor / Kata"]
    Contract --> K8s["Kubernetes"]
    Contract --> Remote["Remote / Firecracker"]
    Contract --> Plugins["Third-party plugins"]

Read the quickstart, architecture, deployment guide, and complete documentation.

Roadmap

Self-hosted sandbox manager

Planned: an optional service for teams that need to run many sandboxes at once. Applications will send it a sandbox request, and the manager will create, track, and delete the temporary environments on the team's existing Kubernetes cluster.

The manager will provide:

  • Queues and per-user limits so one application cannot consume every available resource
  • Automatic cleanup if an application disconnects or crashes
  • A dedicated Kubernetes namespace for sandbox workloads
  • gVisor-backed sandboxes for stronger isolation
  • Central logs, audit history, usage metrics, and health checks
  • Warm sandbox pools for faster startup

This will remain optional. Developers will still be able to use the current Sandbox API directly with Docker or Kubernetes. AgentNest will use existing infrastructure rather than replace Docker or Kubernetes.

Development

pip install -e '.[dev,docs]'
ruff check .
ruff format --check .
mypy agentnest
pytest --cov=agentnest --cov-report=term-missing
mkdocs build --strict

Docker integration tests are opt-in:

AGENTNEST_DOCKER_TESTS=1 pytest -m integration

Apache License 2.0. See LICENSE.

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

agentnest-0.3.0.tar.gz (200.4 kB view details)

Uploaded Source

Built Distribution

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

agentnest-0.3.0-py3-none-any.whl (61.0 kB view details)

Uploaded Python 3

File details

Details for the file agentnest-0.3.0.tar.gz.

File metadata

  • Download URL: agentnest-0.3.0.tar.gz
  • Upload date:
  • Size: 200.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for agentnest-0.3.0.tar.gz
Algorithm Hash digest
SHA256 f982a8602779780c4665cba40c6353fe471a957a3ba5a185f4b2af3737b964d5
MD5 29c042a9fc73aaa55e5727b4e43479ae
BLAKE2b-256 c2ec8c7288bfec174f76bdcc5ec70192e6d372665d8d3ecbe7d0797864ad8e81

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentnest-0.3.0.tar.gz:

Publisher: release.yml on mihirahuja1/agentnestOSS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file agentnest-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: agentnest-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 61.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for agentnest-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c4ae6f298b82229780348ddae4398bf1d62ec5f49a7cccd2b12f494f7c01b916
MD5 3f7fe802f72c11799242761e4dfc2b0b
BLAKE2b-256 90b7fe731e000268e82cfb3cc03c1dbf28d5f6cbaa4e3d81ccb4ffcc5a26388a

See more details on using hashes here.

Provenance

The following attestation bundles were made for agentnest-0.3.0-py3-none-any.whl:

Publisher: release.yml on mihirahuja1/agentnestOSS

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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