What problem does it solve? A green build only proves code compiles, not that the UI actually renders. Images, fonts, and layouts can silently fail while the build passes. This Skill captures real screenshots of a running app so visual changes are verified with pixel proof before being declared done. ## Core Features & Use Cases - Headless browser capture: Uses Playwright with Chromium to screenshot a locally running web app at a chosen viewport. - Next.js workflow guidance: Covers rebuilding and restarting the server on a fresh port so the screenshot reflects the latest code, since next start serves a startup snapshot. - Known-trap avoidance: Documents the pkill -f "next start" pitfall that kills the calling shell (exit 144) and recommends killing by port or using fresh ports instead. - Use Case: After swapping a landing page background or font in a Next.js app, run the build, start the server on a fresh port, capture a full-page screenshot, and visually confirm the change before reporting completion. ## Quick Start Screenshot my running Next.js app with headless Chromium and show me the image so I can confirm the UI change rendered.