Artifacts versioned storage, a new Git-compatible system for AI agents, was introduced by Cloudflare on April 16, 2026. The platform provides distributed storage that integrates with Git, enabling developers to create repositories programmatically and manage code at scale.

Artifacts versioned storage addresses a fundamental shift in how code is generated and managed. Developers and agents are producing more code than ever before, with projections suggesting more code will be written in the next five years than in all of programming history combined. Traditional source control systems were built for human workflows, not the continuous, parallel operations of AI agents that work without interruption.

How Artifacts Versioned Storage Works

Artifacts versioned storage exposes both REST and native Workers APIs for creating repositories, generating credentials, and managing commits. Developers can create repositories on the fly, assign them to individual agent sessions, or fork existing repositories from known starting points. The system integrates seamlessly with standard Git clients, allowing agents to clone and interact with repositories using familiar workflows.

The platform supports importing existing repositories from GitHub and other Git services. Once imported, developers can fork repositories into isolated, read-only copies for review or independent development. This capability enables teams to maintain separate branches for agent-driven work without affecting the primary codebase.

Technical Architecture of Artifacts Versioned Storage

Artifacts versioned storage is built on Cloudflare’s Durable Objects, a stateful compute primitive that supports millions of isolated instances. The system implements a complete Git protocol engine written in Zig and compiled to WebAssembly, resulting in a compact 100KB binary. This implementation includes SHA-1 hashing, compression, delta encoding, and the full Git smart HTTP protocol without external dependencies.

The architecture uses Durable Objects for repository storage, R2 for snapshots, and KV for authentication tokens. Files are stored in SQLite databases within each Durable Object, with large Git objects chunked across multiple rows to accommodate storage limits. The system employs streaming for both fetch and push operations, reducing memory consumption and bandwidth usage.

ArtifactFS: Accelerating Large Repository Clones

Cloudflare open-sourced ArtifactFS, a filesystem driver designed to mount large Git repositories quickly. The tool performs blobless clones, fetching file trees and references while hydrating file contents asynchronously. This approach reduces startup time for agent sandboxes by 90 to 100 seconds per large repository, translating to significant compute savings when running thousands of sandbox jobs monthly.

ArtifactFS prioritizes files that agents typically access first, including package manifests and configuration files, while deprioritizing binary blobs. The system works with any Git remote, not just Artifacts, making it compatible with repositories hosted on GitHub, GitLab, or self-hosted infrastructure. Agents can read files as they hydrate, with blocking only occurring if a file has not yet been downloaded.

Pricing and Availability

Artifacts versioned storage is available in private beta for developers on Cloudflare’s paid Workers plan, with public beta expected in early May 2026. Pricing is structured around storage consumption and operations. The platform charges $0.15 per 1,000 operations with the first 10,000 operations included monthly, and $0.50 per GB-month for storage with the first 1GB included. Cloudflare plans to extend Artifacts to the Workers free plan with usage limits as the beta progresses.

The company is developing additional features including expanded metrics, event subscriptions for repository-level activities, native SDKs for TypeScript, Go, and Python, and search APIs for discovering repositories within namespaces. Support for Workers Builds will enable CI/CD jobs on agent-driven workflows.

Developers can register for the private beta through the Cloudflare dashboard under Build > Storage & Databases > Artifacts. Documentation, REST API examples, and technical guides are available on the Cloudflare website.