Top 5 · 2026-03-28 · source-backed
Stanford's JAI: One Command, Full Agent Sandbox, No Docker Overhead
Story
Running untrusted agent code safely has been a persistent headache. Docker adds startup latency and configuration overhead. VMs are heavier. Most developers, myself included, end up running agents with their real credentials on their real filesystem because the friction of sandboxing is too high.
Stanford's Secure Computer Systems group released JAI and it hits the exact sweet spot. One command. No Dockerfiles, no images, no container registries. The agent gets full read/write access to your working directory while the rest of the filesystem is isolated via copy-on-write. Any writes the agent makes outside the working directory happen in a temporary overlay that disappears when the session ends.
349 points and 192 comments on Hacker News, with practitioners calling it the missing piece for daily agent use. That HN engagement tells me this is solving a problem people actually have, not a research demo looking for a use case.
The copy-on-write approach is smart because it preserves the agent's ability to work normally. Your agent can read system libraries, access package managers, run compilers. It just can't modify anything outside the working directory permanently. From the agent's perspective, it has a normal Linux environment. From your perspective, your system is protected.
This matters more today than it did a month ago. The DryRun Security study (Story #1) shows agents write vulnerable code 87% of the time. The CISA findings (Story #5) show the agent toolchain itself is under active attack. If your agent installs a compromised dependency or writes code that exfiltrates data, JAI's isolation means the blast radius is limited to the working directory, not your entire machine.
For builders using Claude Code, Codex CLI, or any terminal-based coding agent: try JAI as your default execution environment. The overhead is minimal (it's a Linux namespace, not a VM), and the protection against both malicious dependencies and agent mistakes is real. The 192-comment HN thread has practical setup guides.
I don't know how well this works on macOS yet. Stanford's implementation targets Linux namespaces specifically. If you're on a Mac, you'd need a Linux VM as an intermediate layer, which somewhat defeats the "no Docker" premise. But for anyone developing on Linux or running agents on cloud instances, this is the right tool.
Related stories
Each link below shares sources, entities, or timing with this story.
Shared entities / Shared topic / What happened next
Zerostack 1.0: A Coding Agent That Uses 8MB of RAM. Not a Typo.
Both cover Claude Code, Codex CLI, Hacker News, Most; overlapping topics (agent, running); picks up the Claude Code thread on 2026-05-17.
Local models are good now, and the timing isn't a coincidence
Both cover Claude Code, Docker, Hacker News; overlapping topics (agent, code, comment, docker); picks up the Claude Code thread on 2026-06-17.
Shared entities / Shared topic / Earlier coverage
superhq-ai/shuru — Disposable MicroVM Sandbox for AI Agents (Show HN, 187 pts)
Both cover Claude Code, Docker; overlapping topics (access, agent, code, docker, environment); earlier Claude Code coverage from 2026-02-23.
Shared entities / Shared topic / What happened next
Stanford's Meta-Harness Proves the Bottleneck Isn't Your Model. It's Your Harness.
Both cover Claude Code, Stanford; overlapping topics (agent, code, environment, system); picks up the Claude Code thread on 2026-03-31.
Shared entities / Shared topic / What happened next / Tension
Codex on GPT-5.5 tops Terminal-Bench 2.1 at 83.4%, but the top Claude config is export-banned.
Both cover Claude Code, Codex CLI; overlapping topics (agent, code); picks up the Claude Code thread on 2026-06-19.
Cursor and Claude Code Both Ship Classifier-Based Autonomous Execution in the Same Week. The Industry Just Chose Its Architecture.
Both cover Claude Code, Most; overlapping topics (agent, code); picks up the Claude Code thread on 2026-06-01.
Cursor 3 Ditches VS Code for Agent Orchestration. Claude Code Holds 54% Market Share at $1.2B ARR.
Both cover Claude Code, Hacker News; overlapping topics (agent, code); picks up the Claude Code thread on 2026-04-16.
Shared entities / Shared topic / What happened next
Nolan Lawson Says Use AI to Write Better Code More Slowly. 662 Hacker News Points Agree.
Both cover Claude Code, Hacker News; overlapping topics (agent, code, comment); picks up the Claude Code thread on 2026-05-26.
Source trail
Entities
Provenance
- Canonical issue
- Ramsay Research Agent — March 28, 2026
- AI generated
- no
- Story unit
- 2026-03-28-stanford-s-jai-one-command-full-agent-sandbox-no-docker-overhead
- Labels
- source-backed, canonical briefing excerpt