You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/changelog/artifacts/2026-04-16-artifacts-now-in-beta.mdx
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,9 @@ products:
6
6
date: 2026-04-16
7
7
---
8
8
9
-
[Artifacts](/artifacts/) is now in beta. It provides a versioned filesystem for storing and exchanging file trees across Workers, the REST API, and Git-compatible clients.
9
+
[Artifacts](/artifacts/) is now in private beta. Artifacts is Git-compatible storage built for scale: create tens of millions of repos, fork from any remote, and hand off a URL to any Git client. It provides a versioned filesystem for storing and exchanging file trees across Workers, the REST API, and any Git client, running locally or within an agent.
10
10
11
-
Use Artifacts to publish build outputs, sync repositories, and move files between tools without inventing a new packaging format.
11
+
You can [read the announcement blog](https://blog.cloudflare.com/artifacts-git-for-agents-beta/) to learn more about what Artifacts does, how it works, and how it works.
12
12
13
13
You can use the Workers binding to create a repo and read back its remote URL:
14
14
@@ -17,16 +17,16 @@ const created = await env.ARTIFACTS.create("starter-repo");
For more information, refer to [Get started](/artifacts/get-started/), [Workers binding](/artifacts/api/workers-binding/), and [Git protocol](/artifacts/api/git-protocol/).
32
+
To learn more, refer to [Get started](/artifacts/get-started/), [Workers binding](/artifacts/api/workers-binding/), and [Git protocol](/artifacts/api/git-protocol/).
Copy file name to clipboardExpand all lines: src/content/docs/artifacts/examples/isomorphic-git.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ Use this as a reference for the end-to-end flow. In a production Worker, look up
28
28
This example omits authentication so it can focus on the Git flow. In production, authorize the caller before creating repos or granting write capability.
0 commit comments