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 & CodingIntermediate★ 30,471⑂ 12,865AI score 8/10Last updated: Aug 9, 2026
What it does
- Runs non-interactive deploys:
vercel deploy --yes --prodfor production, without--prodfor previews,--cwdfor other directories. - Enforces a pre-send checklist: local build passes → deployment READY via
vercel inspect→curl -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 addvia 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
- "Ship this Next.js app to production" → local build,
vercel deploy --yes --prod, confirm HTTP 200, then hand over the URL. - "Attach example.com and add a production env var" →
vercel domains add example.complusecho "value" | vercel env add VAR_NAME production. - "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)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the 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.
- Clone the repo:
git clone https://github.com/nanocoai/nanoclaw.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r nanoclaw/.claude/skills/add-vercel/container-skills/vercel-cli ~/.claude/skills/ - Install the CLI:
npm i -g vercel - Set up auth: outside nanoclaw/OneCLI, replace
--token placeholderin SKILL.md with a real token (--token $VERCEL_TOKEN) or runvercel login. Create tokens at https://vercel.com/account/tokens - Restart Claude Code and try "deploy this project to Vercel" to confirm it triggers.
View source on GitHub ↗License: MIT