What problem does it solve? Deploying a personal site by hand invites mistakes: unrelated files swept into commits, unverified builds pushed to main, and deploys that return HTTP 200 while serving a blank page. This Skill enforces a disciplined release pipeline so every push to robertritacca.com is verified, scoped, and proven live. ## Core Features & Use Cases - Scoped commits: Surveys the working tree, classifies files as in-scope or out-of-scope, and never uses blanket git add -A, keeping unrelated changes out of the release. - Full local verification: Runs the single npm run verify script mirroring CI before anything is committed, plus a delta-scoped prose check against README and spec docs. - Branch merge and push: Merges feature branches into main, pushes (which triggers the Vercel deploy), watches the GitHub Actions CI run to green, and cleans up merged branches. - Live deploy proof: Confirms the new deployment ID is serving, then runs a hydration smoke test against the live site at desktop and mobile viewports, treating failure as an active outage. - Use Case: After finishing a new portfolio case study on a feature branch, ask to ship it — the Skill verifies the build, merges, pushes, watches CI, and proves the live site renders before reporting what deployed. ## Quick Start Ask the assistant to ship the finished work and make it live on robertritacca.com.