agentsclimarketplace

Deploy vercel

Skill ominou5/funnel-architect-plugin/skills/deploy-vercel

Turn Claude into a full-stack sales funnel architect. Build high-converting funnels with optimized UI/UX, page speed, mobile responsiveness, and deploy to any platform.

Install
npx -y skills add ominou5/funnel-architect-plugin --skill deploy-vercel

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its author says it does

Copied from the file, not written here

Deploys funnel pages to Vercel. Covers CLI setup, project init, framework detection, environment variables, and custom domains.

SKILL.md

1.6 KB, as published. Nobody here has run it

Deploy to Vercel

Best for React/Next.js funnels and projects that benefit from edge functions.

Prerequisites

  • Node.js installed
  • Vercel account (free Hobby tier works for funnels)

Setup

# Install Vercel CLI
npm install -g vercel

# Login
vercel login

# Deploy (first time — will prompt for config)
vercel

# Deploy to production
vercel --prod

Configuration (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
}

Custom Domain

  1. Go to Project settings → Domains
  2. Add your domain
  3. Update DNS: add A record 76.76.21.21 or CNAME to cname.vercel-dns.com
  4. SSL is automatic

Environment Variables

# Add via CLI
vercel env add VARIABLE_NAME

# Or via Dashboard: Project settings → Environment Variables

Framework Support

Vercel auto-detects: Next.js, React (Vite/CRA), Astro, and static HTML. No additional configuration needed for supported frameworks.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.