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

TestThread: AI 에이전트를 위한 오픈 소스 테스트 프레임워크
Tools

TestThread: AI 에이전트를 위한 오픈 소스 테스트 프레임워크

TestThread는 라이브 엔드포인트에 대해 테스트를 실행하고 AI 진단과 함께 통과/실패 결과를 제공하며, 의미론적 매칭, PII 감지, CI/CD 통합과 같은 기능을 포함한 AI 에이전트용 오픈 소스 테스트 프레임워크입니다.

OpenClawRadar
AgentSwarms: 에이전트 AI 학습을 위한 무료 실습 플레이그라운드
Tools

AgentSwarms: 에이전트 AI 학습을 위한 무료 실습 플레이그라운드

AgentSwarms는 5개의 트랙, 40개 이상의 수업, 30개 이상의 실행 가능한 에이전트를 무료로 제공합니다 — 설정이나 API 키 없이 시작할 수 있습니다. 프롬프트에서 다중 에이전트 스웜까지 구축하며 배우세요.

OpenClawRadar
V6rge AI Suite 업데이트, NVIDIA GPU 지원 및 베타 코딩 에이전트 추가
Tools

V6rge AI Suite 업데이트, NVIDIA GPU 지원 및 베타 코딩 에이전트 추가

V6rge AI Suite가 GPU 감지 문제를 해결하는 업데이트를 출시했습니다. 이 업데이트는 향상된 성능을 위한 완전한 NVIDIA GPU 지원을 추가하고, 앱 내에서 직접 코드를 생성하고 지원하는 새로운 베타 코딩 에이전트를 도입합니다.

OpenClawRadar
클로이언: Claude Max 지원 및 GitHub 통합 기능을 갖춘 OpenClaw 래퍼
Tools

클로이언: Claude Max 지원 및 GitHub 통합 기능을 갖춘 OpenClaw 래퍼

Clawion은 API 키 없이 Claude Max를 지원하는 OpenClaw 래퍼입니다. 설정 과정은 템플릿 선택, Telegram 연결, 그리고 자동 PR 생성을 위한 GitHub 통합이 포함된 코드 동반자를 배포하는 것으로 구성됩니다.

OpenClawRadar