OpenAICloudflare Developer PlatformJun 19, 2026, 12:00 AM

Workers - Temporary accounts for AI agent deployments

A condensed section focused on the key takeaways first.

Original Post

Quick Digest

Summary

A condensed section focused on the key takeaways first.

openaienmodel: gpt-5-mini-2025-08-07

Workers - Temporary accounts for AI agent deployments

Key Points

  • wrangler --temporary creates a 60-minute preview deployment
  • agents can deploy without interactive signup or API tokens
  • claim URL converts the temporary account to a permanent one

Summary

Cloudflare Workers now let AI agents deploy directly to a temporary preview account when no Cloudflare credentials are available. Wrangler (v4.102.0+) can instruct an agent to rerun with --temporary, creating a preview deployment that remains live for 60 minutes and returns both a live Worker URL and a claim URL to convert the account to a permanent Cloudflare account.

Key Points

  • Requirements: Wrangler 4.102.0 or later and no active login (wrangler logout).
  • How to trigger: run your agent to deploy; Wrangler will prompt the agent to rerun the deploy with wrangler deploy --temporary.
  • Lifetime: temporary deployment stays live for 60 minutes; within that window you can verify, redeploy, and use the claim URL to make the account permanent.
  • Supported products (preview): Workers, Workers Static Assets, Workers KV, D1, Durable Objects, Hyperdrive, Queues, and SSL/TLS certificates.
  • Practical notes: suitable for demos, CI-driven or automated agent workflows where interactive OAuth or API-token creation is impractical; not intended as a long-term production account—claim within 60 minutes and review product-specific limits and claim behavior in the docs.

Actions for engineers

  • Update Wrangler: npm install -g @cloudflare/wrangler@^4.102.0 (or your preferred install method).
  • Ensure you are logged out: wrangler logout before running agent-driven deploys.
  • Observe Wrangler output and ensure the agent reruns with --temporary.
  • After deployment, capture the live Worker URL and claim URL; follow the claim URL to sign in or create an account to make the deployment permanent.

For details on limits and claim behavior, see the Cloudflare docs: "Claim deployments (temporary accounts)" and "Temporary Cloudflare Accounts for Agents."

Full Translation

Translations

A translation section that keeps the flow of the original article.

openaijamodel: gpt-5-mini-2025-08-07

Workers — AIエージェントのデプロイ用一時アカウント

Workers — AIエージェントのデプロイ用一時アカウント

公開日: 2026-06-19

概要

AIエージェントは、ユーザーが事前にサインアップしたり、ブラウザベースのOAuthフローを開いてダッシュボードで操作したり、APIトークンを作成したりすることなく、CloudflareにWorkerをデプロイできるようになりました。

エージェントがCloudflareの資格情報なしでデプロイを試みると、Wranglerは再実行時に--temporaryを付与するよう促し、Workerを一時的なプレビューアカウントにデプロイします。

試し方

手順:

  • Wranglerを4.102.0以降にアップデートする。
  • ログアウトしていることを確認する(wrangler logout)。
  • エージェントにビルドとデプロイを依頼する。

エージェントはWranglerの出力に従い、--temporaryフラグを付けてデプロイします。例: wrangler deploy --temporary

一時デプロイは60分間有効です。その間、エージェントはWorkerを検証したり、変更を再デプロイしたり、ライブのWorker URLとクレーム用URLの両方を返すことができます。クレーム用URLを開くと、Cloudflareアカウントにサインインするかアカウントを作成して、一時アカウントを永続化できます。

サポートされる製品(現在)

一時プレビューアカウントは現在、以下の限定された製品をサポートしています:

  • Workers
  • Workers Static Assets
  • Workers KV
  • D1
  • Durable Objects
  • Hyperdrive
  • Queues
  • SSL/TLS certificates

サポートされる製品、制限、およびクレームの挙動については、Claim deployments (temporary accounts) を参照してください。

参考

  • 詳細な背景は Temporary Cloudflare Accounts for Agents ↗ を参照してください。

フィードバックや追加のドキュメントはCloudflareの公式ドキュメントやサポートを確認してください。