ワンクリックで
deploy-vercel
Deploys funnel pages to Vercel. Covers CLI setup, project init, framework detection, environment variables, and custom domains.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Deploys funnel pages to Vercel. Covers CLI setup, project init, framework detection, environment variables, and custom domains.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Decision-tree skill that recommends the optimal funnel type based on the user's business model, price point, audience, and goals. Returns a ranked recommendation with reasoning.
Builds a 2-page community group growth funnel. Drives free opt-ins to a group (Skool, Whop, Facebook Group, Discord, or any community platform) using a lead magnet. Use when the goal is to grow a free or paid community.
Reverse-engineer any live public sales funnel and rebuild it — adapted for the user's brand, copy, and offer — without copyright infringement. Handles single pages or entire multi-page funnels. Uses Russell Brunson's Hook/Story/Offer framework to deconstruct what makes a funnel convert, then delegates the build to the funnel-builder agent.
Automated evergreen webinar funnel. Simulates a "live" experience on-demand so leads can register and watch immediately (or at scheduled slots). Best for scaling a proven webinar without live hosting.
High-ticket sales funnel for offers $3,000+. Combines authority content, social proof, and a booked-call CTA. Best for coaching programs, masterminds, done-for-you services, and enterprise solutions.
Recurring membership/subscription funnel. Acquires members with a free trial or low entry, then retains with ongoing value. Best for communities, content libraries, and recurring SaaS.
| name | deploy-vercel |
| description | Deploys funnel pages to Vercel. Covers CLI setup, project init, framework detection, environment variables, and custom domains. |
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.