Deploys static funnel pages to Cloudflare Pages using Wrangler CLI. Covers setup, custom domains, headers, redirects, and performance optimizations like global CDN and Brotli.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agashic-funnel-architect:deploy-cloudflareThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Best for global CDN performance, Workers integration, and free tier generosity.
Best for global CDN performance, Workers integration, and free tier generosity.
# Install Wrangler CLI
npm install -g wrangler
# Login
wrangler login
# Deploy static site
wrangler pages deploy . --project-name=my-funnel
wrangler.toml) — Optionalname = "my-funnel"
compatibility_date = "2025-01-01"
[site]
bucket = "."
your-project.pages.dev_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 file)/old-page /new-page 301
/ /index.html 200
/* /404.html 404
npx claudepluginhub ominou5/funnel-architect-pluginDeploys funnel pages to Netlify using CLI. Covers setup, preview/production deploys, netlify.toml redirects/headers, custom domains, env vars, and form handling.
Generates GitHub Actions workflows for Cloudflare Pages deployment with production, PR preview, and named preview branch support. Includes wrangler config, retry logic, and security best practices.
Deploys code to Cloudflare Workers via Wrangler CLI, with custom domain binding and accessibility verification. Explains free tier limits.