EveryDev.ai
Subscribe
Home
Tools

3,419+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Cloudflare Computer
    Cloudflare Computer icon

    Cloudflare Computer

    Agent Frameworks

    A virtual filesystem inside a Cloudflare Durable Object that gives AI agents a persistent, SQLite-backed workspace with pluggable execution backends including containers, shell, and JavaScript isolates.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Freely available under the MIT License. Use, modify, and distribute according to the license terms.

    Engagement

    Available On

    Windows
    Linux
    API
    SDK
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Agent FrameworksAI InfrastructureAutonomous Systems

    Alternatives

    Cloudflare AgentsE2BInstaVM
    Developer
    CloudflareSan Francisco, CAEst. 2009$332M+ raised

    Listed Aug 2026

    About Cloudflare Computer

    Cloudflare Computer is an open-source TypeScript library published by Cloudflare that gives AI agents a durable, SQLite-backed virtual filesystem running inside a Durable Object. It is currently in preview — suitable for experiments and prototypes but not yet recommended for production use. The project was created in June 2026 and has accumulated over 450 GitHub stars as of early August 2026.

    What It Is

    Cloudflare Computer provides a Workspace abstraction: a virtual filesystem whose authoritative state lives in SQLite inside a Cloudflare Durable Object. On top of that filesystem, it exposes a single pluggable execution surface — workspace.runtime — that can be backed by one of three runtime backends. The result is a self-contained "computer" that an agent can read from, write to, and execute code on, all within Cloudflare's edge infrastructure.

    Three Execution Backends

    The library ships three backends that can be registered under stable IDs on the same Workspace:

    • Container — projects the SQLite state into a sandbox container as a real FUSE mount via a computerd daemon. Changes sync back over a capnweb RPC channel. Provides a full Linux userland with real binaries and real network access.
    • Isolate shell — runs just-bash in a Dynamic Worker. It reaches the authoritative Workspace over Workers RPC with no second store or sync round trip.
    • Isolate JavaScript — evaluates an ECMAScript module in a fresh Dynamic Worker with structured input/results, durable relative imports, configured libraries, Workspace-backed node:fs/promises, and trusted ws:git and ws:artifacts modules.

    workspace.runtime.exec(source, { backend }) is the single entry point; the selected backend determines whether source is a shell command or an ECMAScript module. Backends connect lazily on first use, and a Workspace can also be constructed without any backend to use the filesystem alone.

    Repository Architecture

    The repo is a monorepo of focused packages:

    • @cloudflare/dofs — the Durable Object SQLite-backed virtual filesystem, sync protocol building blocks, and a @platformatic/vfs provider for Node.
    • @cloudflare/computer-rpc — capnweb wire types and server/client helpers shared between the Durable Object and computerd.
    • @cloudflare/computerd — the computerd daemon: a FUSE mount plus HTTP/WebSocket RPC server that runs inside the sandbox container.
    • @cloudflare/computer — the top-level package consumed by Durable Objects.
    • @cloudflare/computer-computerd-linux-x64 — the prebuilt computerd binary for linux-x64, distributed for use in container images.

    Performance Characteristics

    According to the project's own benchmarks in docs/19_performance.md, computerd's FUSE mount beats real disk on metadata-heavy workloads and trails it on large sequential I/O. The docs include fs-bench numbers and a cloudflare/sandbox-sdk npm install comparison with reproduction steps.

    Runnable Examples

    The examples/ directory ships several end-to-end consumers of the public surface:

    • container and worker-shell — identical HTTP write/read/exec surfaces, one using a container and one using just-bash in a Dynamic Worker.
    • worker-javascript — same HTTP surface but exec evaluates an ECMAScript module.
    • think — a @cloudflare/think chat agent that uses the workspace as its working directory, reachable from a terminal.
    • think-compare-runtimes — a web UI that runs the same agent task against container and worker runtimes side by side.
    • tutorial — a step-by-step build that writes a markdown recipe card and runs pandoc in a container to produce a PDF.
    • artifacts — generates a Worker project in a workspace and publishes it to Cloudflare Artifacts.
    • assets — turns a prompt into an image with Workers AI, writes it to the workspace, and returns a shareable link.

    Current Status: Preview

    The README explicitly marks the package as PREVIEW ONLY — APIs are unstable and the design is subject to change. The docs/ specification is described as forward-looking intent rather than a description of the current code. The project is MIT-licensed and open source under Cloudflare's GitHub organization.

    Cloudflare Computer - 1

    Community Discussions

    Be the first to start a conversation about Cloudflare Computer

    Share your experience with Cloudflare Computer, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Freely available under the MIT License. Use, modify, and distribute according to the license terms.

    • Full source code access under MIT License
    • SQLite-backed virtual filesystem (dofs)
    • Container, shell, and JavaScript isolate backends
    • computerd FUSE daemon
    • capnweb RPC helpers

    Capabilities

    Key Features

    • SQLite-backed virtual filesystem inside a Durable Object
    • Pluggable execution backends: Container, Isolate shell, Isolate JavaScript
    • FUSE mount via computerd daemon for full Linux userland
    • just-bash shell execution in Dynamic Workers via Workers RPC
    • ECMAScript module execution with durable relative imports
    • Workspace-backed node:fs/promises for JavaScript isolates
    • Trusted ws:git and ws:artifacts modules
    • Lazy backend connection on first use
    • Filesystem-only mode without any backend
    • capnweb RPC channel for container sync
    • Prebuilt computerd binary for linux-x64
    • Workers AI image generation integration
    • Cloudflare Artifacts publishing support
    • Monorepo with focused packages (dofs, rpc, computerd, computer)

    Integrations

    Cloudflare Durable Objects
    Cloudflare Workers
    Cloudflare Containers
    Cloudflare Workers AI
    Cloudflare Artifacts
    just-bash (vercel-labs)
    @cloudflare/think
    @platformatic/vfs
    capnweb RPC
    node:fs/promises
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Cloudflare Computer and help others make informed decisions.

    Developer

    Cloudflare

    Cloudflare builds cloud platform services that help developers build and deploy applications at the edge. The company operates one of the world's largest networks spanning over 300 cities globally. Cloudflare provides security, performance, and serverless computing products including Workers, Pages, R2, and D1.

    Founded 2009
    San Francisco, CA
    $332M+ raised
    4,600 employees

    Used by

    Mastercard
    GoDaddy
    Baidu
    OpenAI (Partner)
    +1 more
    Read more about Cloudflare
    WebsiteGitHubLinkedInX / Twitter
    6 tools in directory

    Similar Tools

    Cloudflare Agents icon

    Cloudflare Agents

    Build and deploy AI agents on Cloudflare's global network with built-in state management, real-time communication, and seamless tool integration.

    E2B icon

    E2B

    Open-source, secure cloud sandbox infrastructure for running AI-generated code and building enterprise-grade AI agents with isolated microVM environments.

    InstaVM icon

    InstaVM

    Instant cloud infrastructure for AI agents — hardware-isolated microVMs with runtime, storage, networking, secrets injection, and egress control.

    Browse all tools

    Related Topics

    Agent Frameworks

    Tools and platforms for building and deploying custom AI agents.

    577 tools

    AI Infrastructure

    Infrastructure designed for deploying and running AI models.

    335 tools

    Autonomous Systems

    AI agents that can perform complex tasks with minimal human guidance.

    364 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions