What problem does it solve? Non-developers often struggle to publish their web projects online, facing confusing CLI tools, build errors, and hosting configuration. This Skill guides the deployment of static sites and framework apps to Vercel or GitHub Pages with simple, step-by-step instructions. ## Core Features & Use Cases - Project Type Detection: Identifies whether the project is plain static HTML or a Node.js/framework app (via package.json, vite.config.js) to choose the right deployment path. - Vercel Deployment: Checks Vercel CLI login status (vercel whoami), guides login if needed, and runs vercel deploy --prod with correct build settings. - GitHub Pages Deployment: Walks the user through pushing code to GitHub and enabling Pages from repository settings. - Use Case: A user finishes a Vite-based landing page and says "put this online". The Skill verifies the local build succeeds with npm run build, fixes any errors, then deploys to Vercel production. ## Quick Start Deploy my website to Vercel and walk me through each step in plain language.