Radar
← All projectsSunday, September 20, 2026
OpenShell
NVIDIA’s sandboxed runtime for autonomous agents — YAML policies gate files, network, and credentials so a coding agent can’t exfiltrate your machine.
Why it matters
OpenShell is an open-source control plane and sandbox runtime for agents like Claude Code, Codex, OpenCode, and Copilot. Each sandbox runs in Docker, Podman, MicroVM, or Kubernetes with a gateway that owns lifecycle and auth. Outbound traffic starts locked down; you open access with declarative YAML that the proxy enforces at method and path level, including hot-reload for network rules while the agent is running.
Teams are handing coding agents shell access and API keys with almost no boundary. SkillSpector checks the skills you install; OpenShell is where those agents actually run — filesystem locks, process limits, provider credentials injected only to allowed endpoints, and denials logged instead of silent leaks. That is the missing production gate for founder stacks that already live on Claude Code or Codex.
How it works
Install with the curl installer, then openshell sandbox create -- claude (or codex / opencode / copilot). Default sandboxes ship Python, Node, gh, and git. Attach providers so model keys stay off disk and bind only to profile-approved endpoints. Tighten egress with openshell policy set and a short YAML file; reconnect and watch GET pass while POST gets policy_denied. SDKs cover Python, TypeScript, Go, and Rust for app-driven sandboxes.
Not another agent harness and not a skill scanner. OpenShell is the isolation layer under the agent: policy-enforced sandboxes plus endpoint-bound credentials, not a bigger prompt or a longer tool list. Complementary to SkillSpector (pre-install skill risk) and Arcbox (full machine isolation) — this one is the day-to-day sandbox you drop Claude Code or Codex into.
Capabilities
- API / SDK surface
Similar tools