Deploys funnel pages and React/Next.js/Astro projects to Vercel via CLI. Covers setup, framework auto-detection, vercel.json config for headers/redirects/caching, custom domains, and env vars.
npx claudepluginhub ominou5/funnel-architect-pluginThis skill uses the workspace's default tool permissions.
Best for React/Next.js funnels and projects that benefit from edge functions.
Deploys static funnel pages to Cloudflare Pages using Wrangler CLI. Covers setup, custom domains, headers, redirects, and performance optimizations like global CDN and Brotli.
Deploys web projects to Vercel without authentication, auto-detecting frameworks like Next.js, React, Vue, Svelte from package.json. Returns preview URL and claim link. Use for 'deploy my app' or 'push live' requests.
Deploys web projects to Vercel without authentication by packaging into tarball, auto-detecting frameworks like Next.js, React, Vue, Svelte, Astro from package.json; returns preview URL and claim link.
Share bugs, ideas, or general feedback.
Best for React/Next.js funnels and projects that benefit from edge functions.
# Install Vercel CLI
npm install -g vercel
# Login
vercel login
# Deploy (first time — will prompt for config)
vercel
# Deploy to production
vercel --prod
vercel.json){
"headers": [
{
"source": "/(.*).html",
"headers": [{ "key": "Cache-Control", "value": "public, max-age=300" }]
},
{
"source": "/(.*).css",
"headers": [{ "key": "Cache-Control", "value": "public, max-age=31536000, immutable" }]
},
{
"source": "/(.*).js",
"headers": [{ "key": "Cache-Control", "value": "public, max-age=31536000, immutable" }]
}
],
"redirects": [
{ "source": "/old-page", "destination": "/new-page", "permanent": true }
],
"cleanUrls": true,
"trailingSlash": false
}
76.76.21.21 or CNAME to cname.vercel-dns.com# Add via CLI
vercel env add VARIABLE_NAME
# Or via Dashboard: Project settings → Environment Variables
Vercel auto-detects: Next.js, React (Vite/CRA), Astro, and static HTML. No additional configuration needed for supported frameworks.