What problem does it solve? Getting a local project live on the web usually requires configuring hosting, setting up a Vercel account, and wiring CI/CD. This Skill deploys any project directory to Vercel in one step, with no authentication required, and returns a live preview URL plus a claim link to transfer ownership. ## Core Features & Use Cases - One-Command Deployment: Packages a project directory into a tarball (excluding node_modules and .git) and uploads it to Vercel's claimable deploy endpoint. - Automatic Framework Detection: Inspects package.json to detect Next.js, Nuxt, SvelteKit, Astro, Express, Vite, and dozens of other frameworks so builds are configured correctly. - Static HTML Handling: Renames a lone HTML file to index.html so static sites serve correctly at the root path. - Use Case: You just finished a Next.js prototype and want to share it with a teammate. Run the deploy script on the project folder and immediately send them the live preview URL. ## Quick Start Ask the assistant to deploy the current project directory to Vercel and show you the preview and claim URLs.