
Vercel
- 54 installs
- 70 repo stars
- Updated June 19, 2026
- dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations
Deploy and manage Vercel projects, domains, environment variables, and serverless functions using the vercel CLI.
About
Documents vercel CLI commands for deploys, production releases, logs, and project linking. Use it when deploying and managing apps on Vercel from the terminal.
- vercel and vercel --prod for preview/prod deploys
- Inspect, logs, and redeploy commands
Vercel by the numbers
- 54 all-time installs (skills.sh)
- Ranked #700 of 1,435 DevOps & CI/CD skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations --skill vercelAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 54 |
|---|---|
| repo stars | ★ 70 |
| Last updated | June 19, 2026 |
| Repository | dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations ↗ |
What it does
Deploy and manage Vercel projects, domains, environment variables, and serverless functions using the vercel CLI.
Files
Vercel Skill
Use the vercel CLI to deploy and manage Vercel projects.
Deployments
Deploy current directory:
vercelDeploy to production:
vercel --prodList recent deployments:
vercel lsInspect a deployment:
vercel inspect <deployment-url>View deployment logs:
vercel logs <deployment-url>Redeploy a previous deployment:
vercel redeploy <deployment-url>Projects
List all projects:
vercel project lsLink current directory to a project:
vercel linkRemove a project:
vercel project rm <project-name>Domains
List domains:
vercel domains lsAdd a domain to a project:
vercel domains add <domain> <project-name>Check domain configuration:
vercel domains inspect <domain>Environment Variables
List env vars for a project:
vercel env lsAdd an env var:
vercel env add <name>Pull env vars to local .env file:
vercel env pullRemove an env var:
vercel env rm <name>Local Development
Run project locally with Vercel's dev server:
vercel devPull latest project settings:
vercel pullBuild project locally:
vercel buildSecrets (Legacy)
Note: Secrets are deprecated in favor of Environment Variables.
Teams
List teams:
vercel teams lsSwitch to a team:
vercel switch <team-slug>Authentication
Check current login:
vercel whoamiLogin:
vercel loginLogout:
vercel logout