HomeBlogPricingCareersDocsGitHubSlack community
TENSORLAKE·COMMUNITY BUILDS

Built by the community.

Developers from the community benchmarking Tensorlake against other AI agent sandboxes, stress-testing microVM isolation with hostile code, and building stateful agents on snapshots and forks. We didn’t write these — each entry carries a short note on why it’s worth your time, and the full article lives where its author published it. Our own posts are on the engineering log.

BUILDS14
Community —NEWEST FIRST
14 BUILDS · PUBLISHED EXTERNALLY
Jul 20, 2026·2 min read·crabbox.sh

Crabbox Adds Tensorlake as a Delegated-Run Provider

Another integration pickup: OpenClaw's Crabbox, a fast-growing open-source CLI whose whole pitch is "warm a box, sync the diff, run the suite," has shipped a Tensorlake provider in its Firecracker family since May 2026 — we only just noticed. Crabbox delegates sandbox lifecycle and command execution to the tensorlake CLI, so `crabbox run --provider tensorlake -- pnpm test` drops a test suite into a microVM with no extra wiring. The provider docs cover image selection, CPU and memory, disk size, and namespace configuration.

Jul 11, 2026·10 min read·Towards AI

Building Stateful AI Agents That Survive Session Kills

A pattern for agents that don't lose their minds when the session dies: treat snapshots as long-term memory, so a resumed agent picks up with the accumulated state of every previous run. Gowtham measures 84ms cold starts and uses forked sandboxes to evaluate several candidate solutions in parallel before committing to one.

Jul 10, 2026·12 min read·Data Science Collective

Your Agent Benchmark Is Lying to You

Sebastian re-runs an agent eval with verification in place and watches a reported 87% pass rate collapse to 33% — 53% of the passes were fraudulent, the agent gaming the check rather than solving the task. The fix is architectural: fork a fresh microVM per task from one snapshot so no state leaks between runs, and keep the verifier hidden where the agent can't see it.

Jul 10, 2026·12 min read·Towards AI

Why Your AI Experiments Keep Starting From Scratch (And How Tensorlake Fixes It)

Every experiment run that opens with the same 40 seconds of environment setup is paying a tax that snapshotting eliminates. Divy warms the environment once, memory-snapshots it, then forks N workers that resume mid-execution — the setup cost is paid exactly once, no matter how many runs come after.

Jul 9, 2026·12 min read·Towards AI

I Ran 5 AI Agents in Parallel on Tensorlake. The Isolation Held. Here Is How I Built It.

Darshan runs five agents side by side, each in its own microVM, then deliberately crashes one mid-run to see what happens to the rest. Nothing happens — the other four finish clean, with no defensive code in the orchestrator, because the isolation boundary does the work. The write-up doubles as a practical guide to registered images, which cut boot times from 19.49s to 4.51s.

Jul 6, 2026·11 min read·Towards AI

Building Long-Running Claude-Managed Agents: Why State Matters More Than Compute

An orchestrator/worker architecture for Claude-managed agents that run for days: workers checkpoint their state and suspend when idle instead of holding warm compute. The core claim — state matters more than compute — reframes long-running agents as a persistence problem rather than an uptime problem, and the economics follow from there.

Jun 17, 2026·1 min read·X

Demo: A Sandbox Agent Built on Tensorlake

This one found us on its own. Sundaram built an AI coding assistant in Node.js and TypeScript with the Anthropic SDK: it writes, runs, and exports code in Python, JS, TS, and Bash inside a Tensorlake sandbox, with a web UI that streams the agent's thoughts and tool output as it works. The demo is 53 seconds; the code is public if you want to see how the agent loop is wired.

Jun 17, 2026·11 min read·Data Science Collective

Snapshot Once, Rollout a Thousand Times: A Practical RL Setup for Coding Agents

The RL-training version of the snapshot argument: build the environment once, snapshot it, and fork every rollout from that image. Across 8,000 rollouts for a coding agent, Sebastian's setup drops environment time from roughly 20 hours of naive rebuilds to about 4.4 hours — the difference between an overnight run and a same-day iteration loop.

Jun 16, 2026·1 min read·X

Tensorlake Is Now a Sandbox Provider in Deputies

Maybe the strongest kind of endorsement a sandbox can get: adoption as an integration. Sid Palas — of DevOps Directive — added Tensorlake as a sandbox provider in Deputies, an open-source control plane for delegating engineering work to background agents, after a conversation with Diptanu showed it met every criterion from Sid's "What Makes a Good Sandbox for Background Agents" post. Tensorlake now sits in the provider list alongside Daytona, Docker, Kubernetes Agent Sandbox, and AWS Lambda microVMs.

Jun 16, 2026·15 min read·Towards AI

Why Most Multi-Agent AI Systems Waste 90% of Their Time (And How to Fix It)

Divy's numbers on why multi-agent systems feel slow: the bottleneck isn't concurrency, it's setup overhead repeated per agent. At 50 agents that's 4,500 seconds spent preparing to work; forking each agent from one memory snapshot cuts it to 50. The longest read in this list, and the most thorough on the arithmetic.

Jun 16, 2026·9 min read·Towards AI

Building a Stateful Code Interpreter with Tensorlake Sandboxes

The gentlest on-ramp in this list: a build-along tutorial that starts with a toy code interpreter and upgrades it step by step until it remembers state across sessions, suspends, snapshots, and forks. Everything runs on the free tier, so you can follow along without a card.

Jun 11, 2026·8 min read·Towards AI

Your AI Agent Is One rm -rf Away From Disaster. Here Is What I Found After 5 Sandbox Experiments.

Darshan runs five experiments feeding hostile, LLM-generated code to a sandbox and checks whether the walls hold. All four isolation boundaries do, with latency receipts kept throughout: boots average 1.121s with only 148ms of variance. A good first read if you're deciding whether agent-generated code needs a microVM or just a container.

Jun 4, 2026·11 min read·Towards AI

8 AI Agent Sandboxes, Ranked — and Why the Fastest One Will Wreck Your Agent in Production

The most complete comparison of agent-sandbox platforms we've seen: eight providers benchmarked head-to-head. The core argument is that tail latency matters more than the leaderboard number — a sandbox that's fast on median but erratic at P99 will stall a multi-step agent in production. Tensorlake places fourth on raw cold-start speed and first on consistency, with a 0.09s median-to-P99 spread against 0.37s+ for everyone else.

Built something on Tensorlake and wrote about it? We want it on this page — open an issue or ping us on GitHub, or start building with the sandbox docs.

◆ FIELD NOTES — WEEKLY

Engineering posts, in your inbox.

One dispatch per week from the Tensorlake team — runtime deep-dives, product updates, and the occasional benchmark that surprised us.