원클릭으로
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.