Cloudflare ships @cloudflare/computer, routing roughly 90% of agent work into isolates instead of containers
Announced 2026-08-03 as Agents Week day two, `@cloudflare/computer` gives each agent a virtual computer rather than a dedicated container, dynamically routing work between V8 isolates (via just-bash translation in Dynamic Workers) and full Linux containers depending on whether the command needs npm or a native binary. A SQLite-backed virtual filesystem stays in sync across both runtimes, with container access through FUSE mounts, and can be seeded from object storage or a source repository. Cloudflare's stated motivation is capacity, not speed: across every hyperscaler there is nowhere near enough compute to give every user's agent its own container, so roughly 90% of agent work is delegated to isolates. It is MIT-licensed, on npm as an early preview, and the repo is at 786 stars.
↳ Follow the thread