AIAny
AI Agent2026
Icon for item

Cloudflare Computer

Provides a virtual, durable filesystem and pluggable execution runtimes for agents running inside Cloudflare Durable Objects. Offers container, isolate-shell, and isolate-JS backends; preview-stage API with ~10GB Durable Object backing and FUSE-mounted container trade-offs.

Introduction

Most agent work today assumes either ephemeral storage or direct access to host files. Cloudflare Computer flips that assumption: it gives an agent a small, durable workspace that lives inside a Durable Object and exposes a single, audited execution surface across multiple runtimes.

What Sets It Apart
  • Durable, SQLite-backed virtual filesystem so agent state and files survive DO restarts and are authoritative — so what? agents can read/write checkpoints, artifacts and code without an external mutable store.
  • Pluggable execution backends (container via computerd, isolate shell, isolate JavaScript) — so what? choose fast, cheap worker-shell runs for simple commands and fall back to a full Linux container when native binaries or real network are required.
  • Workspace-centric developer tools and AI SDK integration (read/write/edit/ls/exec) — so what? makes it straightforward to wire an agent to file operations with auditing and fine-grained gating.
  • Designed for agent-scale workflows, not large monorepos — so what? lower memory and sync overhead for iterative agent tasks, but limits very large builds or massive node_modules installs.
Who It's For and Trade-offs

Great fit if you build autonomous agents or agent-backed services that need a small, persistent working directory with audited filesystem operations (examples: generation pipelines, agent-driven code edits, on-demand builds inside a sandbox). It is useful for prototyping agent behaviors that must read/write artifacts and occasionally run native tooling in a container.

Look elsewhere if you need production-stable APIs (this is preview-only), heavy I/O or multi-gigabyte monorepos (container FS is memory-held and FUSE adds IO overhead), or when you require a general-purpose remote filesystem beyond ~10GB Durable Object constraints.

Information

  • Websitegithub.com
  • OrganizationsCloudflare
  • Published date2026/06/05

Categories

More Items

GitHub
AI Client2026

Centralizes indexing and management of local AI coding-agent sessions so you can search, view full context, migrate, resume, and restore conversations across agents and devices. Supports extensible local sources, AI summaries, optional Supabase sync, and Skills management.

GitHub
AI Train2025

Provides a modular full-stack reinforcement learning stack to train and evaluate long-horizon, multi-turn tool-use LLM agents, including a performant trainer, a Tinker-compatible backend, agent orchestration, and Gymnasium-style environments for task design.

GitHub

Provides a systematic, project-driven tutorial and runnable codebase for building AI agents, RAG pipelines, and multi-agent systems—focused on Python, LangChain/LangGraph, tooling, deployment, and an interview question bank for engineers aiming to ship production agent applications.