vercel-deployment
Installation
SKILL.md
Vercel Deployment
Deploy to Vercel with automatic project naming from the folder name and auto-disable of Vercel Authentication after deployment.
Workflow
Phase 1: Pre-flight Checks
- Verify Vercel CLI is installed (
vercel --version). If not:npm i -g vercel - Verify authentication:
vercel whoami. If not logged in:vercel login - Determine project name from the current working directory folder name using
basename "$(pwd)"
Phase 2: Deploy
Deploy using the --yes flag to skip interactive prompts. The project name is inferred from the folder name automatically.