What problem does it solve? Getting a locally built website, dashboard, or prototype onto a public URL involves juggling provider CLIs, build outputs, and DNS quirks, and a bad deploy can be hard to undo. This Skill standardizes the whole pipeline: local preview for sign-off, git-tagged versioning before every deploy, a provider fallback ladder, live HTTP verification, and one-command rollback. ## Core Features & Use Cases - Provider ladder deployment: Publishes static output to GitHub Pages by default, falling back to Cloudflare Pages or Netlify based on authenticated CLIs and user needs like custom domains. - Version-before-deploy discipline: Commits and tags every deploy (deploy-YYYYMMDD-HHMM) so any previous version can be restored by checking out a tag and redeploying. - Preview and verification workflow: Serves builds locally or via a cloudflared tunnel for sign-off, then confirms the live URL returns HTTP 200 with expected content before reporting success. - Use Case: You just generated a Vite-based analytics dashboard. Run the build, preview dist/ locally, tag the commit, push to GitHub Pages, and receive a verified live URL plus a rollback tag. ## Quick Start Publish the static site in my current project directory to GitHub Pages and give me the live URL.