What problem does it solve? A merged PR and a green CI build do not prove a change is actually live — build steps, CDN propagation, and caching layers can silently delay or fail. This Skill closes that gap by confirming changes on the real production URL before you report them as shipped. ## Core Features & Use Cases - Bounded URL polling: Poll a live URL in a background loop for a content marker unique to the new version, with a time ceiling tuned to the platform's typical deploy duration. - Local-build screenshot fallback: When a sandboxed proxy breaks headless-browser navigation to the live URL, build and serve the exact commit locally and screenshot it with Playwright instead. - Pitfall guidance: Avoids false negatives from checking too early, weak content markers, local server port races, proxy stalls, and trusting CI status as proof of deployment. - Use Case: After merging a PR that auto-deploys to Vercel, run the polling loop against the production URL for a string that only exists in the new version, and only tell the user the change shipped once the marker appears. ## Quick Start After merging my PR, verify the new homepage section is actually live on the production URL before reporting it as shipped.