What problem does it solve? Deploying web projects to Netlify involves multiple manual steps—authenticating the CLI, linking or creating sites, configuring build settings, and choosing between preview and production deploys. This Skill automates that entire workflow so deployments happen correctly on the first attempt. ## Core Features & Use Cases - Authentication & Site Linking: Verifies Netlify CLI login status, links projects to existing sites via Git remote, or creates new sites with netlify init. - Preview and Production Deploys: Runs draft deploys for testing changes, then promotes to production with netlify deploy --prod. - Framework-Aware Configuration: Detects frameworks like Next.js, Vite, and Astro to suggest correct build commands and publish directories in netlify.toml. - Use Case: You have a React app built with Vite that has never been deployed. The Skill authenticates the CLI, initializes a new Netlify site, installs dependencies, and deploys to production with the correct dist publish directory. ## Quick Start Deploy my current web project to Netlify as a preview deploy so I can test it before going live.