Image: TechCrunch / techcrunch.com Cloudflare Built a Browser for AI Agents That Uses 7x Less CPU Than Chrome
Kitesurf is a stateless, Workers-native browser that skips everything a human browser needs — tabs, themes, extensions — and focuses on what agents actually need: fast HTML extraction, screenshots, and low memory overhead.
Cloudflare shipped Kitesurf on August 6, 2026: a browser built for AI agents, not for humans. It runs on Workers, has no Chromium underneath, and uses 3 to 7 times less CPU and memory than a standard headless browser for the tasks agents actually do — screenshots and HTML extraction.
The tool is available now, for free, through Browser Run.
What a Human Browser Costs Agents
The default setup for browser-using agents is Playwright or Puppeteer on top of headless Chrome. That works, but it’s expensive. Chromium was designed for humans, so it ships with tab management, rendering pipelines for complex visual layouts, extension support, and a lot of other overhead that agents don’t need. For a team running hundreds or thousands of agent sessions, the CPU and memory costs add up fast.
Kitesurf cuts the rendering stack to just what agents require. It uses Blitz’s modular rendering engine, Firefox’s Stylo CSS parser, and Boa — a Rust-based JavaScript engine. No Chromium. Cloudflare says it built the thing in 12 weeks, partly by leaning on open-source components and a headless browser project called Obscura for architectural inspiration.
The result passes roughly 215,000 web platform tests and works on sites like Wikipedia, Hacker News, and the Cloudflare Blog. Standard informational pages are handled. Complex, heavily JS-dependent single-page apps are a different question — Kitesurf is honest that it’s built for typical agent tasks, not full browser compatibility.
How to Use It
If you’re already on Browser Run, switching to Kitesurf requires one parameter change:
browser=kitesurf
Add it to any existing CDP or Quick Action endpoint call. No code rewrite. Cloudflare also runs a public playground at kitesurf.cloudflare.app where you can try it without any setup.
Why This Matters for AI Coding Tools
Most of the agent infrastructure work this year has been about compute and LLMs. Cloudflare has been going after a different layer: the runtime environment agents operate in. In June, they launched @cloudflare/computer, which gives every coding agent access to a Linux container. Kitesurf extends that to the web — agents can now browse with a browser that was designed from the start for agent use, not retrofitted from a consumer product.
Grok Bot, which SpaceXAI launched on August 11, is built around the idea that agents can sign into apps and use the web the way a human would. Kitesurf is the kind of infrastructure that makes that more practical at scale. Whether SpaceXAI uses it directly isn’t confirmed, but it’s the same architectural problem.
The security angle is real too. Kitesurf documents prompt injection as a specific threat. When an agent browses a page, the page can contain text that tries to redirect the agent. A browser built for agents can, in principle, apply different trust rules to rendered content than a standard browser would. Cloudflare hasn’t said exactly how Kitesurf handles that, but it’s one of the things the team is focused on.
Pricing
Free during beta. No announcement on paid tiers yet.
Sources: