Agent skill · DevOps & Cloud

vercel-cli

Deploy apps to Vercel. Use when asked to deploy, ship, or publish a web application, or manage Vercel projects, domains, and environment variables.

NanoCo30,389★ · +78/wk · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add nanocoai/nanoclaw --skill vercel-cli --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 6 KB
Bundled scripts: none
Path: .claude/skills/add-vercel/container-skills/vercel-cli/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 30,426 · +37 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Vercel CLI You can deploy web applications to Vercel using the `vercel` CLI. **HARD RULE: You MUST NOT write HTML, CSS, or JavaScript yourself. When asked to build a website or web app, you MUST delegate to a Frontend Engineer subagent (see "Building Websites" section below). This is not optional. Violation wastes your context window on code that belongs in a separate agent.** ## Auth Auth is handled by OneCLI — the HTTPS_PROXY injects the real token into API requests automatically. The Vercel CLI requires a token to be present to skip its local credential check, so **always pass `--token placeholder`** on every command. OneCLI replaces this with the real token at the proxy level. Before any Vercel operation, verify auth: ```bash vercel whoami --token placeholder ``` If this fails with an auth error, ask the user to add a Vercel token to OneCLI. They can create one at https://vercel.com/account/tokens and register it via `onecli secrets create` on the host. Once added, retry `vercel whoami`. ## Deploying Always use `--yes` to skip interactive prompts and `--token placeholder` for auth (OneCLI replaces with real token). ```bash # Deploy to production vercel deploy --yes --prod --t

What's inside
Steps it walks through
  1. Auth
  2. Deploying
  3. Pre-Send Checks (do this before sharing the URL)
  4. Project Management
  5. Domains
  6. Environment Variables
  7. Common Errors
  8. Building Websites — Delegate to Frontend Engineer
  9. Best Practices
Commands it runs
vercel whoami --token placeholder
Deploy to production
vercel deploy --yes --prod --token placeholder
Deploy from a specific directory
vercel deploy --yes --prod --token placeholder --cwd /path/to/project
Preview deployment (not production)
vercel deploy --yes --token placeholder
Check deployment status
vercel inspect <deployment-url> --token placeholder
Link to an existing Vercel project (non-interactive)
More from nanoclaw
All skills →
About this skill
What does the vercel-cli skill do?

Deploy apps to Vercel. Use when asked to deploy, ship, or publish a web application, or manage Vercel projects, domains, and environment variables.

How do I install it?

Run `npx skills add nanocoai/nanoclaw --skill vercel-cli --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From nanocoai/nanoclaw, a repository with 30,426 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going