Cloudflare's Kitesurf is a browser built for agents, not people
Cloudflare has released Kitesurf, a web browser that runs on its Workers platform as WebAssembly and is meant for AI agents rather than human users. The argument behind it is simple. Engines like Chromium were built for people, and they carry memory and CPU overhead that an agent does not need. That overhead gets expensive when you want to give thousands of agents their own browser at once, so until now only well-funded applications could afford it.
Kitesurf splits the work into three parts: an Engine that speaks the Chrome DevTools Protocol and holds session state, a PageScript layer that builds the DOM and runs JavaScript using the Rust libraries Blitz and Stylo, and a PageRenderer that paints the page into an image buffer. Every page load is treated as untrusted, and rendering happens in stateless, disposable isolates. Cloudflare reports it uses 3.1 to 3.8 times less CPU and 4.7 to 7 times less memory than Chromium, and passes more than 215,000 Web Platform Tests. The tradeoff is speed: wall-clock time runs about 1.7 to 1.8 times slower. It works with Puppeteer and Playwright and is free in beta through Cloudflare's Browser Run service.
Why it matters
If you run browser-based agents at scale, per-instance cost has been the ceiling on how many you can afford. Cutting memory by up to seven times changes that math, but test whether the slower wall-clock time hurts your specific task before you switch.