Freestyle Launches Sandboxes for AI Coding Agents with Live Forking

✍️ OpenClawRadar📅 게시일: April 17, 2026🔗 Source
Freestyle Launches Sandboxes for AI Coding Agents with Live Forking
Ad

What Freestyle Offers

Freestyle is building cloud infrastructure specifically for AI coding agents, providing sandboxes that function as full virtual machines. These VMs are designed to be interchangeable with EC2 instances from an agent's perspective, but with specialized features for AI development workflows.

Key Technical Features

  • Live Forking: Can fork a running sandbox horizontally with less than 400ms pause. This forks the entire memory state, not just the filesystem. If you're halfway through a browser page with animations, running a Minecraft server, or have an error in process, all forks will maintain that exact state.
  • Fast Startup: Sandboxes start in approximately 500ms, with demos showing VM provisioning in under 700ms from API request to ready machine.
  • Full System Support: Runs full Debian with hardware virtualization, supporting eBPF, Fuse, systemd init instead of runc, and multiple users. The goal is that anything expected to work on Debian should work on these VMs.
  • Snapshotting: Can save VM state and resume weeks later from the exact point.
  • Persistence Options: Supports persistent VMs that pause after idle timeout (e.g., 60 seconds) with $0 cost while paused, resuming on next execution.

Infrastructure Approach

Freestyle runs on their own bare metal racks after finding that moving VMs across cloud nodes didn't provide acceptable performance. They discovered that monthly costs for Google Cloud and AWS bare metal nodes were equivalent to the total hardware cost, leading them to build their own infrastructure.

Ad

API Usage Examples

The source shows several code patterns for different use cases:

// App Builder pattern (like Lovable, Bolt, V0)
import { freestyle, VmSpec } from "freestyle-sandboxes";
import { VmBun } from "@freestyle-sh/with-bun";
import { VmDevServer } from "@freestyle-sh/with-dev-server";

const { repoId } = await freestyle.git.repos.create({ ... });

const { vm } = await freestyle.vms.create({ with: { devServer: new VmDevServer({ devCommand: "bun run dev", runtime: new VmBun(), repo: repoId }), }, });

// Agent pattern (like Devin, Cursor Agent)
import { freestyle, VmSpec } from "freestyle-sandboxes";
import { VmBun } from "@freestyle-sh/with-bun";

const { vm } = await freestyle.vms.create({ git: { repos: [ { repo: "https://github.com/user/repo.git" }, ] } });

const { forks } = await vm.fork({ count: 3 });

await Promise.all([ ai(forks[0], "Build the API endpoints"), ai(forks[1], "Build the frontend UI"), ai(forks[2], "Write the test suite"), ]);

// Code review pattern (like Code Rabbit, Greptile)
import { freestyle } from "freestyle-sandboxes";
import { VmBun } from "@freestyle-sh/with-bun";

const { vm } = await freestyle.vms.create({ git: { repos: [{ repo: repoUrl, rev: branchRev }], }, });

const { stdout: lint } = await vm.exec("bun run lint"); const { stdout: test } = await vm.exec("bun test"); const review = await ai(vm, "Review the diff for bugs");

await github.pulls.createReview({ body: review, event: test.includes("FAIL") ? "REQUEST_CHANGES" : "APPROVE", });

Target Audience

This infrastructure is designed for developers building or using AI coding agents that need full-system sandboxes for testing, development, and deployment workflows at scale.

📖 Read the full source: HN LLM Tools

Ad

👀 See Also

LetMeWatch: FFmpeg 장면 감지를 통해 Claude에 비디오 분석 기능을 추가하는 Python 플러그인
Tools

LetMeWatch: FFmpeg 장면 감지를 통해 Claude에 비디오 분석 기능을 추가하는 Python 플러그인

개발자가 FFmpeg를 사용해 장면 감지를 수행하고, 시각적 변화가 있는 프레임만 추출하여 타임스탬프를 추가한 후, 이를 배치로 Claude의 다중모달 비전 기능에 입력하는 약 200줄의 Python 플러그인 'LetMeWatch'를 만들어 Claude가 비디오를 분석할 수 있게 했습니다.

OpenClawRadar
클로드 코드의 병렬 서브 에이전트: 토큰 절약과 소모의 순간
Tools

클로드 코드의 병렬 서브 에이전트: 토큰 절약과 소모의 순간

Anthropic은 멀티 에이전트 시스템이 단일 채팅보다 약 15배 더 많은 토큰을 사용하지만, 프롬프트 캐싱을 통해 토큰 비용을 90% 할인받을 수 있다고 보고합니다. 하위 에이전트가 비용을 절약하거나 낭비하는지는 캐시 적중률에 달려 있습니다.

OpenClawRadar
MCP 기반으로 구축된 암호화된 개인식별정보(PII)를 갖춘 로컬-퍼스트 AI 세금 준비 소프트웨어
Tools

MCP 기반으로 구축된 암호화된 개인식별정보(PII)를 갖춘 로컬-퍼스트 AI 세금 준비 소프트웨어

한 개발자가 AES-256-GCM으로 모든 개인 식별 정보(PII)를 암호화하는 Crow용 세금 신고 확장 프로그램을 만들었습니다. 이 시스템은 Claude, ChatGPT, Gemini 또는 Ollama를 통한 로컬 모델을 포함한 모든 MCP 호환 클라이언트와 작동하며, 1040 양식, 스케줄 1, HSA(8889), 교육 세액 공제(8863), 자영업(스케줄 C/SE), 자본 이득(스케줄 D) 계산을 로컬에서 처리합니다.

OpenClawRadar
MCP 컨텍스트 블로트: 클로드 코드 사용자를 위한 실제 비용과 실용적 해결책
Tools

MCP 컨텍스트 블로트: 클로드 코드 사용자를 위한 실제 비용과 실용적 해결책

Claude Code에서 9개의 MCP 서버를 운영하면 콜드 스타트에 38k 토큰이 소모되고, 도구 정의 오버헤드로 월 약 $700의 비용이 발생하며, 모델 성능이 저하됩니다. BM25 랭킹을 적용한 게이트웨이 패턴을 사용하면 컨텍스트를 4k로 줄일 수 있습니다.

OpenClawRadar