deploy-cloudflare

deploy-cloudflare is a skill for Claude Code from ominou5/funnel-architect-plugin. It costs 31 tokens per session (403 once invoked), scanned A, original, MIT.

A deployment guide for publishing funnel pages on Cloudflare Pages, a web-hosting service connected to Cloudflare's global network.

In plain words
What is it for?
Use it to set up Wrangler, deploy a site, connect a custom domain, add security or caching headers, configure redirects, and optionally use Workers.
Why use it?
It explains how to put a static site online and configure domains, redirects, headers, and caching in the Cloudflare environment.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the funnel-architect-plugin plugin — 29 skills, 5 agents, 2 hooks shipped together

Good fit Use it to set up Wrangler, deploy a site, connect a custom domain, add security or caching headers, configure redirects, and optionally use Workers.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ominou5/funnel-architect-plugin/deploy-cloudflare
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 ominou5/funnel-architect-plugin --skill deploy-cloudflare
Clone the repo
git clone --depth 1 https://github.com/ominou5/funnel-architect-plugin

Made for: Claude Code.

Or install funnel-architect-plugin, the plugin that ships this one along with the rest of its 29 skills, 5 agents, 2 hooks.

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 deploy-cloudflare

README.md
[![agentmods](https://agentmods.dev/badge/skills/ominou5/funnel-architect-plugin/deploy-cloudflare/github.svg)](https://agentmods.dev/skills/ominou5/funnel-architect-plugin/deploy-cloudflare)
Your own site
<a href="https://agentmods.dev/skills/ominou5/funnel-architect-plugin/deploy-cloudflare"><img src="https://agentmods.dev/badge/skills/ominou5/funnel-architect-plugin/deploy-cloudflare/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 deploy-cloudflare

Your own site · 80×15
<a href="https://agentmods.dev/skills/ominou5/funnel-architect-plugin/deploy-cloudflare"><img src="https://agentmods.dev/badge/skills/ominou5/funnel-architect-plugin/deploy-cloudflare.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 403 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 original No closer match found 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.00031 $0.00403
Opus 5 $0.00015 $0.00201
Sonnet 5 $0.00006 $0.00081
Haiku 4.5 $0.00003 $0.00040

Measured 10d ago against content hash 702cfd6524c3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

deploy-cloudflare 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 10d 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.

skills/deploy-cloudflare/SKILL.md · 78 lines

What it actually says

Deploy to Cloudflare Pages

Best for global CDN performance, Workers integration, and free tier generosity.

Prerequisites

  • Node.js installed
  • Cloudflare account (free tier includes unlimited sites)

Setup

# Install Wrangler CLI
npm install -g wrangler

# Login
wrangler login

# Deploy static site
wrangler pages deploy . --project-name=my-funnel

Configuration (wrangler.toml) — Optional

name = "my-funnel"
compatibility_date = "2025-01-01"

[site]
bucket = "."

Custom Domain

  1. Pages project → Custom domains → Set up a domain
  2. Add CNAME record: your-project.pages.dev
  3. SSL is automatic with Cloudflare Universal SSL

Custom Headers (_headers file)

/*.html
  Cache-Control: public, max-age=300

/*.css
  Cache-Control: public, max-age=31536000, immutable

/*.js
  Cache-Control: public, max-age=31536000, immutable

/*.webp
  Cache-Control: public, max-age=31536000, immutable

/*
  X-Content-Type-Options: nosniff
  X-Frame-Options: DENY
  Referrer-Policy: strict-origin-when-cross-origin

Redirects (_redirects file)

/old-page  /new-page  301
/           /index.html  200
/*          /404.html    404

Performance Benefits

  • Global CDN (300+ edge locations)
  • Automatic Brotli compression
  • HTTP/3 support
  • Free Web Analytics
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. 10d ago First seen · 78 lines · 31 tokens per session scan A 702cfd6524c3

Subscribe to this mod's changes

deploy-cloudflare is a skill published in the GitHub repository ominou5/funnel-architect-plugin (80 stars, last pushed 6mo ago), licensed MIT. It adds 31 tokens to every session and 403 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

deploy-to-connect

Deploy or publish Python and R content to a Posit Connect server using rsconnect-python or the R rsconnect package. Handles interactive apps and dashboards, web APIs, rendered documents, and prepared bundles/manifests. Use whenever the user asks to deploy, publish, or redeploy content to Posit Connect, or mentions…

posit-dev/skills · 81 tokens

cloud-administration

Administers the cloud the company runs on rather than the one it sells — tenant and subscription structure, the SaaS estate and who owns each app, identity as the real perimeter, cloud spend that arrives as a surprise, and what the provider does not do for you. Use this to structure subscriptions or tenants, get…

cbrock84/headcount · 100 tokens

telephony-and-conferencing

Runs voice and meeting infrastructure — phone systems and numbers, emergency calling obligations, conference rooms and their AV, call recording and its retention consequences, and the porting that makes provider changes go badly. Use this to replace a phone system, fix rooms nobody can start a meeting in, meet…

cbrock84/headcount · 85 tokens

virtualization-operations

Runs the hypervisor layer beneath the servers — host capacity and consolidation ratios, VM sprawl, snapshot discipline, resilience and live migration, and licensing that counts cores rather than instances. Use this to size or expand a cluster, work out why VMs are slow when the hosts look idle, clean up sprawl, set…

cbrock84/headcount · 86 tokens

network-administration

Designs and operates the corporate network — segmentation, remote access, wireless, DNS and addressing, and diagnosing network problems. Use this to segment a network, set up or fix remote access, diagnose intermittent connectivity, plan addressing or DNS, or assess whether the network's trust assumptions still hold.

cbrock84/headcount · 62 tokens

business-continuity-and-resilience

Plans for operating through disruption — impact analysis, recovery objectives, continuity plans, and the exercises that prove they work. Use this to run a business impact analysis, set RTO and RPO, write or test a continuity plan, prepare for a supplier or site failure, or answer a customer's resilience questionnaire.

cbrock84/headcount · 69 tokens