cloudflare-deploy

cloudflare-deploy is a skill for Codex from seaworld008/Commonly-used-high-value-skills. It costs 43 tokens per session (1,999 once invoked), scanned A, a copy of cloudflare-deploy, MIT.

A deployment workflow for publishing applications and infrastructure on Cloudflare. Cloudflare is a hosting platform with services such as Workers, Pages, storage, databases, and key-value data stores.

In plain words
What is it for?
Use it to deploy a site or application with Cloudflare Workers or Pages, or to set up related services such as R2, D1, or KV. It also covers Wrangler-based deployment workflows.
Why use it?
It helps choose the appropriate Cloudflare service and guides authentication, configuration, deployment, and validation. This avoids treating every Cloudflare project as the same kind of workload.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it to deploy a site or application with Cloudflare Workers or Pages, or to set up related services such as R2, D1, or KV. It also covers Wrangler-based deployment workflows.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/seaworld008/commonly-used-high-value-skills/cloudflare-deploy
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add seaworld008/Commonly-used-high-value-skills --skill cloudflare-deploy
Clone the repo
git clone --depth 1 https://github.com/seaworld008/Commonly-used-high-value-skills

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for cloudflare-deploy

README.md
[![agentmods](https://agentmods.dev/badge/skills/seaworld008/commonly-used-high-value-skills/cloudflare-deploy/github.svg)](https://agentmods.dev/skills/seaworld008/commonly-used-high-value-skills/cloudflare-deploy)
Your own site
<a href="https://agentmods.dev/skills/seaworld008/commonly-used-high-value-skills/cloudflare-deploy"><img src="https://agentmods.dev/badge/skills/seaworld008/commonly-used-high-value-skills/cloudflare-deploy/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for cloudflare-deploy

Your own site · 80×15
<a href="https://agentmods.dev/skills/seaworld008/commonly-used-high-value-skills/cloudflare-deploy"><img src="https://agentmods.dev/badge/skills/seaworld008/commonly-used-high-value-skills/cloudflare-deploy.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,999 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 89% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00043 $0.01999
Opus 5 $0.00022 $0.01000
Sonnet 5 $0.00009 $0.00400
Haiku 4.5 $0.00004 $0.00200

Measured 7d ago against content hash 3943705d4ddb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

cloudflare-deploy scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

89% identical to cloudflare-deploy — 33 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

openclaw-skills/cloudflare-deploy/SKILL.md · 256 lines

How it starts

The opening of the file, as written. The whole thing — 256 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Cloudflare Deploy

Consolidated skill for building on the Cloudflare platform. Use decision trees below to find the right product, then load detailed references.

When to Use

Use this skill when the user asks to:

  • deploy an app or site on Cloudflare
  • choose between Workers, Pages, R2, D1, KV, or related Cloudflare products
  • configure wrangler-based deployment workflows
  • map an application need to the right Cloudflare platform service

Usage

Recommended flow:

identify workload type
-> choose the right Cloudflare product
-> verify auth and environment
-> follow the matching reference path
-> deploy and validate

Prerequisites

  • When sandboxing blocks the deployment network calls, rerun with sandbox_permissions=require_escalated.
  • The deployment might take a few minutes. Use appropriate timeout values.

Authentication (Required Before Deploy)

Verify auth before wrangler deploy, wrangler pages deploy, or npm run deploy:

npx wrangler whoami    # Shows account if authenticated

Not authenticated? → references/wrangler/auth.md

  • Interactive/local: wrangler login (one-time OAuth)
  • CI/CD: Set CLOUDFLARE_API_TOKEN env var

Quick Decision Trees

"I need to run code"

Need to run code?
├─ Serverless functions at the edge → workers/
├─ Full-stack web app with Git deploys → pages/
├─ Stateful coordination/real-time → durable-objects/
├─ Long-running multi-step jobs → workflows/
├─ Run containers → containers/
├─ Multi-tenant (customers deploy code) → workers-for-platforms/
├─ Scheduled tasks (cron) → cron-triggers/
├─ Lightweight edge logic (modify HTTP) → snippets/
├─ Process Worker execution events (logs/observability) → tail-workers/
└─ Optimize latency to backend infrastructure → smart-placement/

"I need to store data"

Need storage?
├─ Key-value (config, sessions, cache) → kv/
├─ Relational SQL → d1/ (SQLite) or hyperdrive/ (existing Postgres/MySQL)
├─ Object/file storage (S3-compatible) → r2/
├─ Message queue (async processing) → queues/
├─ Vector embeddings (AI/semantic search) → vectorize/
├─ Strongly-consistent per-entity state → durable-objects/ (DO storage)
├─ Secrets management → secrets-store/
├─ Streaming ETL to R2 → pipelines/
└─ Persistent cache (long-term retention) → cache-reserve/

Read the full file on GitHub · 256 lines

Files

What ships with it

60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago Changed 3943705d4ddb
  2. 11d ago First seen · 256 lines · 43 tokens per session scan A 79918ba4ded2

Subscribe to this mod's changes

cloudflare-deploy is a skill published in the GitHub repository seaworld008/Commonly-used-high-value-skills (70 stars, last pushed 4d ago), licensed MIT. It adds 43 tokens to every session and 1,999 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 89% identical to cloudflare-deploy, differing in 33 lines, and is treated as a copy.