| name | vercel-cli |
| description | Vercel CLI skill for deploying and managing Vercel projects from the terminal. |
| metadata | {"openclaw":{"emoji":"▲","requires":{"bins":"[Truncated]","env":"[Truncated]"},"primaryEnv":"VERCEL_TOKEN"}} |
Vercel CLI
Vercel CLI skill for deploying and managing Vercel projects from the terminal. Use when the user wants to deploy, list, inspect, rollback, or manage Vercel deployments; configure domains, SSL certificates, environment variables; manage teams or view usage; or needs help with vercel CLI commands.
Environment Setup
Install Vercel CLI:
pnpm i -g vercel
Update:
pnpm i -g vercel@latest
Verify Version:
vercel --version
Authentication
Interactive Login:
vercel login
CI/CD Environment (Recommended):
- Create an access token on the Tokens page
- Set the
VERCEL_TOKEN environment variable
Prefer using the VERCEL_TOKEN environment variable over the --token flag to avoid exposing the token in process lists or logs.
Core Workflows
Deployment
vercel
vercel deploy --prod
vercel build
vercel dev
Project Linking
vercel init
vercel link
vercel pull
Deployment Management
vercel list [project]
vercel inspect [url/id]
vercel logs [url]
vercel promote [url/id]
vercel redeploy [url/id]
vercel rollback
vercel remove [url]
vercel bisect
Domains and Certificates
vercel alias set [url] [domain]
vercel alias rm [domain]
vercel domains ls
vercel domains add [domain]
vercel certs ls
vercel certs issue [domain]
Environment Variables
vercel env ls
vercel env add [name] [env]
vercel env rm [name] [env]
vercel env pull [file]
Account and Teams
vercel whoami
vercel teams list
vercel switch [team]
vercel usage
Advanced Tools
vercel api [endpoint]
vercel curl [path]
vercel cache purge
vercel blob
vercel integration
vercel mcp
Key Notes
- Most commands support
--help for detailed parameters: vercel help [command]
vercel is equivalent to vercel deploy
--prod / --production flag deploys to production environment
--follow for logs command enables real-time log tracking
- Use
VERCEL_TOKEN environment variable for automated authentication; do not expose token on the command line
Reference Documentation
- See
references/commands.md for detailed command parameter descriptions