vercel-cli

Solid

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

AI & Automation 29,545 stars 12887 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Vercel CLI You can deploy web applications to Vercel using the `vercel` CLI. ## 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 --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 ``` After deploying, verify the live URL: ```bash # Check deployment status vercel inspect <deployment-url> --token placeholder ``` ## Pre-Send Checks (do this before sharing the URL) Don't send the deployment URL to the user until you've confirmed it's actually working. At minimum: 1. **Local build passes** — run `npm run build` (or the project's build command) before `vercel deploy`...

Details

Author
nanocoai
Repository
nanocoai/nanoclaw
Created
3 months ago
Last Updated
yesterday
Language
TypeScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category