What problem does it solve? Setting up a browser-based visual style editor in a Next.js app requires correct dev-only installation, dynamic imports, and careful mounting so the tool never ships to production. This Skill walks an agent through that exact setup so the overlay works in development without leaking into production builds. ## Core Features & Use Cases - Guided Installation: Checks package.json and existing imports, then installs interface-kit as a dev dependency. - DevTools Component Setup: Creates or updates src/components/DevTools.tsx with a dynamic, SSR-disabled InterfaceKit import gated on NODE_ENV. - Production Safety Verification: Confirms the overlay appears in development and is excluded from production builds. - Use Case: A developer wants to tweak React app styles visually in the browser during development. The agent installs Interface Kit, wires it into the app shell as a sibling of {children}, and verifies it never ships to production. ## Quick Start Add the Interface Kit visual design overlay to my Next.js project so I can edit styles in the browser during development.