What problem does it solve? UI changes in pull requests often lack visual evidence, forcing reviewers to manually run the app to verify appearance. This Skill automates before/after screenshot capture against the base branch and feature branch, producing a markdown comparison table for PR review. ## Core Features & Use Cases - Multi-platform capture: Runs Paparazzi for Android (Compose), swift-snapshot-testing for iOS (SwiftUI), and Playwright for Web (React/Next.js), detecting affected platforms from changed files. - Safe base-branch capture: Uses a detached git worktree pinned to origin/<base> instead of stash/checkout, so the current worktree is never mutated. - Explicit outcome tokens: Emits SCREENSHOTS_CAPTURED, SCREENSHOTS_TOOLING_MISSING, or SCREENSHOTS_NO_UI_DETECTED so callers like /create-pr can branch reliably. - Use Case: A developer opens a PR that changes a Compose screen and a Next.js page; the skill captures golden images on both branches and generates a Visual Changes table with light, dark, and mobile variants. ## Quick Start Ask the assistant to capture before and after screenshots for the current UI changes against the main branch and generate a visual comparison table for the PR.