What problem does it solve? Getting a local project live on Vercel involves many branching paths: checking git remotes, verifying CLI authentication, linking projects to teams, and handling sandboxed environments where login is impossible. This Skill automates that decision flow so any project can be deployed with a preview URL returned to the user. ## Core Features & Use Cases - State-aware deploy routing: Detects git remotes, Vercel project linkage (.vercel/project.json or repo.json), and CLI auth status, then picks the right method: git push, vercel deploy, or link-then-deploy. - Team and scope handling: Lists available Vercel teams and applies the selected team slug via --scope on all CLI commands. - No-auth fallback scripts: Ships bash scripts that package a project (auto-detecting 40+ frameworks from package.json), upload it to a claimable deploy endpoint, and return preview and claim URLs without any Vercel login. - Use Case: A user in a sandboxed AI environment says "deploy my app and give me the link" — the Skill detects no CLI auth, runs the fallback script, and returns a live preview URL plus a claim URL to transfer ownership. ## Quick Start Ask the agent to deploy the current project to Vercel and return the preview link.