What problem does it solve? Code that compiles and type-checks can still fail at runtime. This Skill closes that gap by verifying every edit against a live next dev server, combining Next.js's own introspection endpoint with a real browser session so you confirm actual behavior, not just build health. ## Core Features & Use Cases - Dual-view verification: Cross-checks the framework view (/_next/mcp routes, errors, compilation issues, server actions) against the browser view (DOM, console, network, React fiber) driven by agent-browser. - Four-mode failure detection: After each edit, checks compilation, runtime errors, user-visible behavior, and React-level behavior such as extra renders and suspense fallbacks. - Session-persistent browser testing: Uses worktree-scoped agent-browser sessions with cookie restore so logged-in state survives across verification loops. - Use Case: After editing a server component, confirm via get_compilation_issues that Turbopack compiled cleanly, then drive the page in Chrome to assert the rendered output and inspect the component tree for unexpected re-renders. ## Quick Start Ask the agent to verify that your recent Next.js edit actually works in the running dev server using the next-dev-loop skill.