Defense-in-depth proxy sandbox for AI agents.
Don't let your agent phone home.
⚠️ Warning: This is an experimental project. It has not been audited by security professionals. Use it at your own risk. See Security model for details and known limitations.
Coding agents: Claude Code · Codex · Pi | Agent platforms: OpenClaw
agentcage is a CLI that generates hardened, sandboxed environments for AI agents. Your agent runs on an internal-only network with no internet gateway; the only way out is through an inspecting proxy that scans every HTTP request before forwarding it.
Most agent deployments hand the agent a lethal trifecta: internet access, real secrets, and arbitrary code execution. Combined, they create an exfiltration risk that most setups have zero defense against. agentcage breaks that combination. See Security model for the full breakdown.
- Network isolation -- agent on internal-only network, no internet gateway
- Inspecting proxy -- pluggable inspector chain on every HTTP request, WebSocket frame, and DNS query
- Secret injection -- agent gets placeholders, proxy swaps in real values outbound and redacts inbound
- Secret & payload scanning -- regex secret detection, Shannon entropy, content-type mismatch, base64 blob scanning
- DNS filtering -- allowlist-based dnsmasq sidecar, placeholder IPs for unauthorized domains
- Fail-closed by default -- all hardening on out of the box; component failure stops traffic
Three isolation backends are supported:
- container (Linux, default) — rootless Podman containers on the host
- vm (Linux + macOS) — a Lima VM per cage with hardware isolation via KVM
- apple-container (macOS 26+ Apple Silicon, default there) — an Apple
containermicroVM per cage; faster and lighter than Lima.
See Security model for the threat-by-threat matrix and Isolation modes for how each backend works and when to pick which. For the full container topology and inspector chain, see Architecture.
curl -fsSL https://raw.githubusercontent.com/agentcage/agentcage/master/install.sh | shThe installer detects your platform and installs the right backend (Podman on Linux, Apple container on macOS 26+ Apple Silicon, Lima elsewhere). For manual setup per backend, see Install.
One command builds the image, creates a temporary cage, and drops you into an interactive session. The cage is torn down when you exit; audit logs are preserved.
# Run Claude Code in a sandbox
agentcage run claude-code
# Run OpenAI Codex in a sandbox
agentcage run codex
# Pass secrets and a project directory
agentcage run claude-code -s ANTHROPIC_API_KEY --project ~/myrepoSurvives across sessions — keep auth tokens, run multiple cage exec sessions, or let it run continuously as a background service (systemd auto-restarts on failure and starts on boot).
agentcage init myapp --scaffold claude-code
agentcage secret set myapp ANTHROPIC_API_KEY
agentcage cage create -c cage.yaml
agentcage cage exec myapp -- claude # interactive
agentcage cage verify myapp # or just check it's runningagentcage init myapp --image node:22-slim
# Edit cage.yaml to configure domains, secrets, inspectors...
agentcage cage create -c cage.yamlRun agentcage init --list-scaffolds to see available scaffolds. See CLI Reference for the full command set.
agentcage cage list # what's running
agentcage cage logs myapp # agent logs
agentcage cage audit myapp --summary --since 24h # inspection decisions
agentcage secret set myapp ANTHROPIC_API_KEY # rotate a secret
agentcage cage update myapp -c cage.yaml # apply config changes
agentcage cage destroy myapp # tear it downSee CLI reference for the full command set and Operate a cage for the how-tos.
The docs map lays out the tree by task: control egress, operate a cage, extend with a custom inspector, understand the architecture and security model.
MIT
