What problem does it solve? Deploying a project to Vercel involves many decisions: whether the project is linked, whether the CLI is authenticated, which team to target, and what to do in sandboxed environments without credentials. 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 deployment routing: Detects git remotes, Vercel project linking (.vercel/project.json or .vercel/repo.json), and CLI authentication to choose between git push, vercel deploy, or a no-auth fallback script. - Team and scope handling: Lists available Vercel teams and passes the selected team slug via --scope on all CLI commands. - No-auth fallback scripts: Bundled shell scripts package a project (excluding node_modules, .git, .env), auto-detect the framework from package.json, upload it to a claimable deploy endpoint, and poll until the build completes. - Use Case: A user in a sandboxed AI environment says "deploy my app and give me the link" — the Skill runs the fallback script and returns a live preview URL plus a claim URL to transfer the deployment to their Vercel account. ## Quick Start Ask the assistant to deploy the current project to Vercel and return the preview URL.