What problem does it solve? Getting a project live on Vercel involves many branching paths depending on whether the project is git-linked, CLI-authenticated, or running in a sandboxed environment. This Skill automates that decision flow and executes the correct deployment method, always returning a live preview URL. ## 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 linking first. - 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 deploy.sh and deploy-codex.sh that package a project (excluding node_modules, .git, .env), auto-detect the framework from package.json, upload to a claimable deploy endpoint, and poll until the build completes. - Use Case: You built a Next.js app in a sandboxed environment with no Vercel credentials. The Skill packages the project, deploys it via the claimable endpoint, and returns a preview URL plus a claim URL to transfer it to your Vercel account. ## Quick Start Deploy my current project to Vercel and give me the preview link.