Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Vercel CLI Deploy Assistant

Deploys web apps to Vercel non-interactively, manages domains and env vars, and verifies the live URL before sharing it.

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

What it does

  • Runs non-interactive deploys: vercel deploy --yes --prod for production, without --prod for previews, --cwd for other directories.
  • Enforces a pre-send checklist: local build passes → deployment READY via vercel inspectcurl -sI <url> returns 2xx/3xx → optional visual check with agent-browser.
  • Collects project, domain, and environment-variable commands (vercel link, vercel ls, domains add, env pull, env add via piped echo).
  • Includes a troubleshooting table for framework detection, rate limits, project limits, and expired auth.
  • Hard rule: when asked to build a site, delegate to a Frontend Engineer subagent (create the agent, then actually send the message) instead of writing HTML/CSS/JS inline.

Who it's for

  • Web developers who ship to Vercel regularly.
  • Teams that have shared broken deployment URLs because nobody checked the response code.
  • Users of the nanoclaw/OneCLI agent runtime where tokens are injected by an HTTPS proxy.

Examples

  1. "Ship this Next.js app to production" → local build, vercel deploy --yes --prod, confirm HTTP 200, then hand over the URL.
  2. "Attach example.com and add a production env var" → vercel domains add example.com plus echo "value" | vercel env add VAR_NAME production.
  3. "Build me a new landing page" → spawn a Frontend Engineer agent, send the full brief, and forward the returned live URL and screenshots.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/nanocoai/nanoclaw/HEAD/.claude/skills/add-vercel/container-skills/vercel-cli/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

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 && mkdir -p ~/.claude/skills && cp -r nanoclaw/.claude/skills/add-vercel/container-skills/vercel-cli ~/.claude/skills/

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

  1. Clone the repo: git clone https://github.com/nanocoai/nanoclaw.git
  2. Create the skills folder: mkdir -p ~/.claude/skills
  3. Copy the skill: cp -r nanoclaw/.claude/skills/add-vercel/container-skills/vercel-cli ~/.claude/skills/
  4. Install the CLI: npm i -g vercel
  5. Set up auth: outside nanoclaw/OneCLI, replace --token placeholder in SKILL.md with a real token (--token $VERCEL_TOKEN) or run vercel login. Create tokens at https://vercel.com/account/tokens
  6. Restart Claude Code and try "deploy this project to Vercel" to confirm it triggers.