AI/TLDR

Cloudflare · 2026-04-16 · notable

Cloudflare Artifacts — Git-Compatible Versioned Storage for AI Agents

Cloudflare launches Artifacts in private beta: Git-compatible versioned storage for AI agents that can create and manage millions of isolated repos, fork at scale, and clone large repos on demand via open-source ArtifactFS.

Cloudflare Artifacts — Git-compatible versioned storage for AI agents announcement

Git-compatible versioned storage for AI agents — create and fork tens of millions of repos programmatically on Cloudflare Workers.

Key specs

StatusPrivate beta (paid Workers plan)
Operations$0.15 / 1k (first 10k/month free)
Storage$0.50 / GB-month (first 1GB free)

What is it?

Cloudflare Artifacts is a new versioned storage service built on Durable Objects that gives AI agents a Git-compatible interface for storing and versioning file artifacts. Agents can create isolated repos via a REST or Workers API, fork from any remote, and import from GitHub or GitLab. An open-source driver, ArtifactFS, enables async Git clones that hydrate file contents on demand instead of fetching the full repo upfront.

How does it work?

Repos are backed by Cloudflare's Durable Objects infrastructure, giving each agent session its own persistent isolated storage. The Git protocol is implemented in Zig and compiled to Wasm so standard Git clients work without modification — push, clone, and fetch all work against an Artifacts repo. ArtifactFS intercepts file-system calls and fetches only the blobs needed, reducing clone time for large repos to 10–15 seconds. Private beta is available now on paid Workers plans; public beta is expected in early May 2026.

Why does it matter?

Most agent frameworks treat storage as an afterthought — files are ephemeral or live in a bespoke database. Artifacts gives agents versioned, branchable, diff-able storage with the same semantics developers already know. This is particularly useful for coding agents that need isolated workspaces per session, code-review pipelines that fork a repo and propose changes, and multi-agent workflows where one agent's output becomes another's input.

Who is it for?

Developers building coding agents, document-processing pipelines, or any agent workflow that needs versioned file storage with Git semantics.

Try it

https://developers.cloudflare.com/artifacts/

Sources · 2 outlets

Tags

  • cloudflare
  • git
  • agents
  • versioned-storage
  • workers
  • beta
  • artifactfs
  • durable-objects

← All releases · Learn AI