From 53334f47f169d7583edac83a5c78aa3783f1660b Mon Sep 17 00:00:00 2001 From: Brendan Irvine-Broque Date: Wed, 17 Jun 2026 08:02:26 -0700 Subject: [PATCH 1/3] docs(wrangler): mention temporary deploy flag --- skills/wrangler/SKILL.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/skills/wrangler/SKILL.md b/skills/wrangler/SKILL.md index 07d4dbb..d9b7c10 100644 --- a/skills/wrangler/SKILL.md +++ b/skills/wrangler/SKILL.md @@ -238,6 +238,8 @@ wrangler deploy --keep-vars wrangler deploy --minify ``` +For unauthenticated preview deploys, run `wrangler deploy --temporary` when a non-interactive environment lacks `CLOUDFLARE_API_TOKEN`; Wrangler provisions temporary credentials and prints a claim URL. Use normal authentication for owned or production deployments. + ### Manage Secrets > **Security**: Never pass secret values as command arguments or pipe them via `echo`. From cead1487ab4c42e04d3fa164f8fbd75b43f61bb3 Mon Sep 17 00:00:00 2001 From: Brendan Irvine-Broque Date: Wed, 17 Jun 2026 08:34:44 -0700 Subject: [PATCH 2/3] Apply suggestion from @irvinebroque --- skills/wrangler/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/wrangler/SKILL.md b/skills/wrangler/SKILL.md index d9b7c10..5a9a7b2 100644 --- a/skills/wrangler/SKILL.md +++ b/skills/wrangler/SKILL.md @@ -238,7 +238,7 @@ wrangler deploy --keep-vars wrangler deploy --minify ``` -For unauthenticated preview deploys, run `wrangler deploy --temporary` when a non-interactive environment lacks `CLOUDFLARE_API_TOKEN`; Wrangler provisions temporary credentials and prints a claim URL. Use normal authentication for owned or production deployments. +If you need to deploy, but wrangler is not signed in or the `CLOUDFLARE_API_TOKEN` environment variable is not present, run `wrangler deploy --temporary`. The Cloudflare API will provision a temporary account and return a claim URL. ### Manage Secrets From dc93c96dfbc4dd94cb1120f74d68c9531df4b445 Mon Sep 17 00:00:00 2001 From: Brendan Irvine-Broque Date: Thu, 18 Jun 2026 23:42:28 -0700 Subject: [PATCH 3/3] Apply suggestion from @irvinebroque --- skills/wrangler/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/wrangler/SKILL.md b/skills/wrangler/SKILL.md index 5a9a7b2..9d523e9 100644 --- a/skills/wrangler/SKILL.md +++ b/skills/wrangler/SKILL.md @@ -238,7 +238,7 @@ wrangler deploy --keep-vars wrangler deploy --minify ``` -If you need to deploy, but wrangler is not signed in or the `CLOUDFLARE_API_TOKEN` environment variable is not present, run `wrangler deploy --temporary`. The Cloudflare API will provision a temporary account and return a claim URL. +If you need to deploy a new, public Worker, but wrangler is not signed in or the `CLOUDFLARE_API_TOKEN` environment variable is not present, run `wrangler deploy --temporary`. The Cloudflare API will provision a temporary account and return a claim URL. ### Manage Secrets