Cloudflare's Agent Filesystem Hit #1 on GitHub. Its Own Benchmark Says 2x Slower.
Cloudflare Computer gives an agent a filesystem that survives between invocations — and publishes the receipt: 124.7s for an npm install that takes 63.9s on disk. The tradeoff is the news, not the star count.
NeuroX AI · August 7, 2026

Cloudflare Computer hit #1 on GitHub Trending on August 5 and is closing on 5,000 stars. It's a virtual filesystem living inside a Durable Object, with SQLite as the authoritative state store — so an agent's working directory survives between invocations instead of evaporating with the request.
Then the repo publishes its own benchmarks, which is the part worth reading. A full npm install of 854 packages and 36,675 files takes 124.7s on the FUSE mount versus 63.9s on the container's ext4 disk. Roughly 2x slower. Every 512 KiB chunk gets hashed into a content-addressed blob store on release — that's what makes the Durable Object sync only what changed, and it's what you pay for.
Now read the other half of the table. Against real disk, find tree runs at 0.72x, rm 1000 files at 0.66x, git init + commit at 0.72x. Metadata work — git status, module resolution, incremental builds — gets faster. That's most of what an agent does between edits.
So it's not slower. It's slower at the thing agents rarely do and faster at the thing they do constantly. The README still says "NOT suitable for production use at this time." Believe it — and note that the team shipped the numbers that argue against themselves. That's the standard to hold your own agent infrastructure to.