What problem does it solve? Deploying to Vercel from CI pipelines, agents, or headless environments is blocked by the interactive vercel login flow. This Skill enables full Vercel project management using access tokens, so deployments, environment variables, and domains can be managed without any interactive login. ## Core Features & Use Cases - Token-Based Authentication: Locate VERCEL_TOKEN from the environment or .env files and export it so the CLI reads it natively, avoiding insecure --token flags. - Preview and Production Deploys: Deploy via vercel deploy, git push triggers, or repo linking, defaulting to preview unless production is explicitly requested. - Project Management: Manage environment variables, inspect deployments and build logs, and configure domains with team-scoped commands. - Use Case: An AI agent in a sandboxed environment needs to deploy a Next.js app. It finds VERCEL_TOKEN in .env, exports it, links the project with vercel link --repo --scope my-team -y, and runs a preview deploy without any prompts. ## Quick Start Deploy my project to Vercel as a preview using the token in my .env file.