
Perplexity just pulled back the curtain on SPACE (Sandboxed Platform for Agentic Code Execution), the infrastructure layer powering Perplexity Computer. Built in 10 weeks, it's already handling 100% of Computer's production traffic. The announcement is notable not just for what SPACE does, but for what it reveals about the hard infrastructure problems that nobody talks about when shipping long-running agents.
The problem with existing sandboxes
Traditional container-based sandbox approaches aren't designed for agentic tasks. They typically assume short-lived, stateless jobs and treat the kernel as a single point of failure. That works fine for running a quick script, but agents are a different beast entirely.
Agent sessions are long-lived and stateful: an agent accumulates hours of context, a working filesystem, and running processes that can't simply be thrown away and reconstructed from scratch. Moreover, the workload inside should be untrusted by default, necessitating stronger security measures.
The tension at the core of sandbox engineering comes down to three competing goals that usually trade off against each other:
- Granting broader access lets an agent accomplish more but exposes more of the system to a workload you don't trust.
- Sharing more between sandboxes makes creation faster but widens the attack surface.
- Snapshotting more frequently improves recovery and enables features like rollback but requires time and storage space.
SPACE's claim is that it doesn't force you to pick two out of three.
Session vs. sandbox: the key architectural insight
The most important design decision in SPACE is conceptual: separating the session from the sandbox running it. SPACE spins up ephemeral sandboxes which only live as long as they're needed for running code, interacting with files, or other tasks. When the task finishes, the sandbox, and everything inside it, is destroyed.
For long-horizon work that needs to survive restarts, SPACE wraps each sandbox in a session that can be paused, resumed, or branched into multiple sandboxes. SPACE's rolling snapshot technology allows context to travel with the work, even though no individual sandbox does. Think of it as the difference between a browser tab and your browsing history -- the tab can close, but the state lives on.
Don't miss what's next in AI
Join 300,000+ engineers and researchers who get the signal, not the noise.
- Full access to in-depth AI research breakdowns
- Be the first to know what's trending before it hits mainstream
- Daily curated papers, repos, and industry moves

