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 and always returns a working deployment URL. ## Core Features & Use Cases - State-aware deployment routing: Detects git remotes, existing .vercel/ project links, and CLI authentication to choose between git push, vercel deploy, or linking first. - Team and scope handling: Lists available Vercel teams and passes the selected --scope to all CLI commands for correct account targeting. - No-auth fallback scripts: Ships bash scripts that package a project (auto-detecting frameworks like Next.js, Astro, or Express from package.json), upload it to a claimable deploy endpoint, and poll until the build completes. - Use Case: You finish a Next.js app in a sandboxed environment with no Vercel credentials. The Skill packages the directory, deploys it, and returns a preview URL plus a claim URL to transfer ownership. ## Quick Start Deploy my current project to Vercel and give me the preview link.