Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

Vercel CLI Deploy Helper

Teaches Claude to ship web apps with the vercel CLI and manage projects, domains, and env vars safely.

Dev & CodingIntermediate30,47112,865AI score 7/10Last updated: Aug 9, 2026

What it does

Gives Claude a repeatable workflow for deploying web apps with the vercel CLI. It enforces non-interactive flags (--yes) and a pre-send checklist before any URL reaches the user: local build passes → deployment status READY → live URL returns 2xx (optionally a visual check with agent-browser).

It also documents project linking, deployment listing, domain management, and environment variable pull/add commands, plus a troubleshooting table for common failures (No framework detected, rate limits, DNS/proxy errors). For "build me a website" requests, the skill mandates delegating to a Frontend Engineer subagent instead of writing markup inline.

Who it's for

  • Frontend/full-stack developers who deploy to Vercel regularly
  • Teams that want verified deployments, not just "it said success"
  • Anyone managing domains and env vars from the CLI
  • Note: auth assumes a OneCLI proxy (--token placeholder); outside that setup you'll need a real token.

Examples

  1. "Ship this Next.js app to production" → run the build, vercel deploy --yes --prod, confirm with vercel inspect and curl -sI, then share the URL
  2. "Add DATABASE_URL to production env" → echo "..." | vercel env add DATABASE_URL production, verify with vercel env pull
  3. "Design and publish a new landing page" → spawn the Frontend Engineer agent, send the full brief, and relay the live URL plus screenshots back

· · · Install guide · · ·

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the .claude/skills/add-vercel/container-skills/vercel-cli folder from the GitHub repo nanocoai/nanoclaw into my ~/.claude/skills/vercel-cli/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/nanocoai/nanoclaw.git /tmp/nanoclaw && mkdir -p ~/.claude/skills/vercel-cli && cp -r /tmp/nanoclaw/.claude/skills/add-vercel/container-skills/vercel-cli/* ~/.claude/skills/vercel-cli/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal.
  2. Create the skills directory: mkdir -p ~/.claude/skills
  3. Clone the repo: git clone https://github.com/nanocoai/nanoclaw.git /tmp/nanoclaw
  4. Copy the skill: mkdir -p ~/.claude/skills/vercel-cli && cp -r /tmp/nanoclaw/.claude/skills/add-vercel/container-skills/vercel-cli/* ~/.claude/skills/vercel-cli/
  5. Install the CLI: npm i -g vercel
  6. Set up auth: if you're not on OneCLI, run vercel login or replace --token placeholder in SKILL.md with a real VERCEL_TOKEN.
  7. Restart Claude Code and try: "Deploy this project to Vercel."