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
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & 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 zip
latestvk9736sjpnnyemjgpr9savdqc4982mtev

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

CommandDescription
vercelDeploy current project to preview
vercel --prodDeploy current project to production
vercel deploy --prodDeploy to production (explicit)
vercel lsList all deployments
vercel inspect <url>Show details of a deployment
vercel promote <url>Promote a deployment to production
vercel rollbackRollback to previous deployment
vercel redeploy <url>Redeploy an existing deployment

Environment Variables

CommandDescription
vercel env lsList all environment variables
vercel env add <name>Add a new environment variable
vercel env rm <name>Remove an environment variable
vercel env pull .env.localPull env vars to a local file

Domains

CommandDescription
vercel domains lsList 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

CommandDescription
vercel project lsList all projects
vercel project add <name>Create a new project
vercel project rm <name>Remove a project
vercel linkLink current directory to a project

Logs

CommandDescription
vercel logs <url>View realtime logs for a deployment
vercel logs <url> --followStream logs in realtime

Teams

CommandDescription
vercel teams lsList all teams
vercel teams switchSwitch to a different team

Local Development

CommandDescription
vercel devStart local development server
vercel buildBuild project locally

Global Flags

FlagDescription
--jsonOutput result as JSON
--token <token>Login token
--scope <team>Set scope to a team
--yesSkip confirmation prompts
--cwd <path>Set working directory
--debugEnable debug output

Files

1 total
Select a file
Select a file to preview.

Comments

Loading comments…