Deploys static funnel pages to Cloudflare Pages using Wrangler CLI. Covers setup, custom domains, headers, redirects, and performance optimizations like global CDN and Brotli.
npx claudepluginhub ominou5/funnel-architect-pluginThis skill uses the workspace's default tool permissions.
Best for global CDN performance, Workers integration, and free tier generosity.
Deploys funnel pages to Netlify using CLI. Covers setup, preview/production deploys, netlify.toml redirects/headers, custom domains, env vars, and form handling.
Deploys apps and infrastructure to Cloudflare using Workers, Pages, KV, D1, R2, queues, and more. Provides decision trees for code execution, storage, AI, networking, security needs.
Deploys to Cloudflare Workers via Wrangler CLI. Binds custom domains, verifies accessibility, explains 100k req/day free tier, guides account setup.
Share bugs, ideas, or general feedback.
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