What problem does it solve? Getting a local project live on Vercel involves many decisions: is the project linked, is the CLI authenticated, is there a git remote, which team should own the deployment. This Skill automates that decision flow and executes the correct deployment path, always defaulting to preview deployments unless production is explicitly requested. ## Core Features & Use Cases - State-aware deployment routing: Checks git remotes, .vercel/project.json or .vercel/repo.json linkage, and CLI authentication before choosing between git push, vercel deploy, or linking first. - Team and scope handling: Lists available Vercel teams and passes the selected team slug via --scope on all CLI commands. - No-auth fallback scripts: Deploys without authentication in sandboxed environments (claude.ai, Codex) using bundled deploy scripts that return a preview URL and a claim URL. - Use Case: You finish a React + Vite app and say "deploy my app and give me the link". The Skill detects the project is unlinked, authenticates the CLI, links the project to your team, deploys a preview, and returns the live URL. ## Quick Start Ask the agent to deploy this project to Vercel and give you the preview link.