Cloudflare ships isolate sandboxes and an AI CMS
Cloudflare opened Dynamic Workers beta for V8 isolate‑based sandboxing that runs AI‑generated code in milliseconds, and also debuted EmDash — a TypeScript, edge‑deployed CMS built around sandboxed plugins and AI workflows. Together they make secure, serverless agentic apps and AI‑native content platforms easier to prototype and deploy. (infoq.com) (joost.blog) (aitoolly.com)
Cloudflare’s changelog and docs published on March 24, 2026 detail the Dynamic Worker Loader API and show two loading modes — load(code) for one‑off execution and get(id) for cached, warm workers — plus new helper libraries for runtime bundling and agent patterns. (developers.cloudflare.com) The company’s engineering post quantifies V8 isolates as starting in “a few milliseconds” and using only a few megabytes of memory, claiming roughly 100× faster startup and 10–100× better memory efficiency than typical Linux containers. (blog.cloudflare.com) (infoq.com) Cloudflare documents three helper packages — @cloudflare/codemode to replace multi‑tool calls with a single code tool, @cloudflare/worker-bundler to resolve and bundle npm deps at runtime, and @cloudflare/shell which exposes a virtual filesystem backed by SQLite and R2 for persistent agent state. (developers.cloudflare.com) Published pricing materials list Dynamic Workers billing across three dimensions (unique Dynamic Workers created daily, requests, and CPU time) and specify a $0.002 charge per unique Dynamic Worker created per day in addition to request and CPU billing, while also noting the per‑Worker fee is waived during the current beta and customers “will not be billed for your use of Dynamic Workers at this time.” (developers.cloudflare.com) EmDash’s v0.1.0 preview is released as an open‑source, MIT‑licensed, TypeScript CMS built on Astro 6.0, with the project published on GitHub and a Cloudflare blog post saying the codebase was produced by agent‑assisted development over roughly two months. (blog.cloudflare.com) (github.com) Architectural details for EmDash include plugin execution inside isolated V8 Worker isolates (using Dynamic Workers) with declared permissions, a built‑in MCP server for agent workflows, defaults such as passkey authentication and role‑based access controls, and deployment options targeting Cloudflare Workers, Netlify, or Vercel with D1 for production storage and R2 for media. (blog.cloudflare.com) (github.com)