Vercel
Deploy and manage Vercel projects via CLI - deploy, env, domains, logs, teams. Use when user mentions 'vercel', 'deploy', 'vercel project', or wants to inter...
MIT-0 · Free to use, modify, and redistribute. No attribution required.
⭐ 0 · 124 · 0 current installs · 0 all-time installs
byMelvyn@Melvynx
MIT-0
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
Name and description match the SKILL.md: it documents installing and using the Vercel CLI to deploy, manage env vars, domains, logs, teams, etc. Nothing declared in metadata (no unrelated env vars or config paths) contradicts the stated purpose.
Instruction Scope
Instructions are limited to installing and running the Vercel CLI, using flags like --token, --cwd, --json and commands such as vercel env pull which will read and write environment variables. This is in-scope for a Vercel helper, but commands like `vercel env pull .env.local` or `--token` usage can expose secrets if misused.
Install Mechanism
No install spec executed by platform (instruction-only), but the SKILL.md recommends `npm i -g vercel`. Installing a global npm package is a common, expected step for a CLI helper but does have the usual supply-chain risks of npm packages.
Credentials
The skill does not request environment variables or other credentials in metadata. The documented workflow requires authenticating to Vercel (via `vercel login` or `--token`), which is appropriate for this functionality. Users should be aware that Vercel tokens and project env vars are sensitive.
Persistence & Privilege
always:false and user-invocable:true (defaults) — normal for a CLI helper. The skill does not request elevated or persistent system-wide privileges and does not modify other skills' configs.
Assessment
This skill is a documentation-style helper for the official Vercel CLI and is internally consistent. Before using it: (1) be prepared to install a global npm package (npm i -g vercel); (2) authenticate with a Vercel token or interactive login — treat that token as sensitive and prefer least-privilege scopes; (3) avoid running env-pull or deploy commands in directories containing secrets unless you intend to write them to disk (vercel env pull will create .env.local with environment variables); (4) review any command the agent proposes to run (especially those using --yes or --token) to avoid accidental destructive or exfiltrating operations; and (5) confirm you trust the skill source before granting tokens or running installs.Like a lobster shell, security has layers — review code before you run it.
Current versionv1.0.0
Download ziplatest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
SKILL.md
vercel
Setup
npm i -g vercel
Verify installation:
vercel --version
Always use --json flag when calling commands programmatically.
Authentication
vercel login
Resources
Deploy
| Command | Description |
|---|---|
vercel | Deploy current project to preview |
vercel --prod | Deploy current project to production |
vercel deploy --prod | Deploy to production (explicit) |
vercel ls | List all deployments |
vercel inspect <url> | Show details of a deployment |
vercel promote <url> | Promote a deployment to production |
vercel rollback | Rollback to previous deployment |
vercel redeploy <url> | Redeploy an existing deployment |
Environment Variables
| Command | Description |
|---|---|
vercel env ls | List all environment variables |
vercel env add <name> | Add a new environment variable |
vercel env rm <name> | Remove an environment variable |
vercel env pull .env.local | Pull env vars to a local file |
Domains
| Command | Description |
|---|---|
vercel domains ls | List all domains |
vercel domains add <domain> | Add a domain |
vercel domains rm <domain> | Remove a domain |
vercel domains inspect <domain> | Show domain details and DNS records |
Projects
| Command | Description |
|---|---|
vercel project ls | List all projects |
vercel project add <name> | Create a new project |
vercel project rm <name> | Remove a project |
vercel link | Link current directory to a project |
Logs
| Command | Description |
|---|---|
vercel logs <url> | View realtime logs for a deployment |
vercel logs <url> --follow | Stream logs in realtime |
Teams
| Command | Description |
|---|---|
vercel teams ls | List all teams |
vercel teams switch | Switch to a different team |
Local Development
| Command | Description |
|---|---|
vercel dev | Start local development server |
vercel build | Build project locally |
Global Flags
| Flag | Description |
|---|---|
--json | Output result as JSON |
--token <token> | Login token |
--scope <team> | Set scope to a team |
--yes | Skip confirmation prompts |
--cwd <path> | Set working directory |
--debug | Enable debug output |
Files
1 totalSelect a file
Select a file to preview.
Comments
Loading comments…
