Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
"vfile": "6.0.3",
"vite-tsconfig-paths": "6.1.1",
"vitest": "4.1.6",
"wrangler": "4.90.1",
"wrangler": "4.92.0",
"zod": "4.4.3"
},
"devEngines": {
Expand Down
122 changes: 115 additions & 7 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions src/content/changelog/artifacts/2026-05-15-wrangler-support.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
title: Manage Artifacts namespaces and repos with Wrangler CLI
description: Manage Artifacts namespaces, repos, and repo-scoped tokens from the command line using Wrangler.
products:
- artifacts
date: 2026-05-15
---

You can now manage [Artifacts](/artifacts/) namespaces, repos, and repo-scoped tokens directly from Wrangler CLI.

Available commands:

- `wrangler artifacts namespaces list` — List Artifacts namespaces in your account.
- `wrangler artifacts namespaces get` — Get metadata for a namespace.
- `wrangler artifacts repos create` — Create a repo in a namespace.
- `wrangler artifacts repos list` — List repos in a namespace.
- `wrangler artifacts repos get` — Get metadata for a repo.
- `wrangler artifacts repos delete` — Delete a repo.
- `wrangler artifacts repos issue-token` — Issue a repo-scoped token for Git access.

To get started, refer to the [Wrangler Artifacts commands documentation](/workers/wrangler/commands/artifacts/).
15 changes: 15 additions & 0 deletions src/content/docs/artifacts/api/wrangler.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
pcx_content_type: reference
title: Wrangler commands
sidebar:
order: 3
description: Manage Artifacts namespaces, repositories, and repo tokens from the command line using Wrangler.
products:
- artifacts
---

import { WranglerNamespace } from "~/components";

Use `wrangler artifacts` commands to manage Artifacts namespaces, repositories, and repo-scoped tokens from the command line.
Comment thread
dinasaur404 marked this conversation as resolved.

<WranglerNamespace namespace="artifacts" />
13 changes: 13 additions & 0 deletions src/content/docs/workers/wrangler/commands/artifacts.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
pcx_content_type: reference
title: Artifacts
description: Manage Artifacts namespaces, repositories, and repo-scoped tokens using Wrangler.
products:
- workers
---

import { WranglerNamespace, InlineBadge } from "~/components";

Manage [Artifacts](/artifacts/) namespaces, repositories, and repo-scoped tokens using Wrangler. <InlineBadge text="Private beta" variant="caution" />

<WranglerNamespace namespace="artifacts" />