What problem does it solve? When a feature partially works or behaves unexpectedly, developers often check only one layer and miss where the flow actually breaks. This Skill infers the complete user story being built and verifies every boundary — browser, server, API route, data source, and response rendering — with concrete evidence. ## Core Features & Use Cases - Story Inference: Reads recently edited files, routes, and environment config to determine what the user is building before checking anything. - Multi-Layer Evidence Gathering: Captures browser state, dev server terminal output, runtime logs, and environment variables across all layers. - Boundary-by-Boundary Flow Walk: Traces the data path from UI trigger through API handler to external dependencies and back, flagging common breaks like missing awaits, wrong HTTP methods, and env var mismatches. - Use Case: After starting a Next.js dev server, ask whether the new checkout feature works — the Skill walks the flow from button click to API route to database call and reports the first broken boundary with a specific fix. ## Quick Start Ask the assistant to verify that the feature you just built works end to end across the browser, API, and database.