What problem does it solve? Recreating a live Next.js site as editable source code is error-prone: RSC payloads are double-encoded, fixture data gets mistranscribed, and dev-mode builds hide rendering differences. This Skill provides a deterministic workflow to reverse-engineer a deployed Next.js app into a 1:1 local project you can run and modify. ## Core Features & Use Cases - Stack Detection: Identify Next.js App Router, Turbopack builds, and Tailwind v3 vs v4 from raw HTML via curl. - RSC Payload Extraction: Decode self.__next_f.push double-encoded UTF-8 JSON to recover the real component tree, props, and inline data. - 1:1 Verification: Compare production-build output token-by-token against the live site, with fixes for common traps like escaped $$, pluralization, and stale Windows next-server processes. - Use Case: A user pastes a Vercel URL and wants the code locally. The Skill extracts the RSC tree and assets, generates a Next.js 15 + React 19 + Tailwind v4 project with typed data in lib/data.ts, and verifies every route matches the live site. ## Quick Start Clone this live Next.js site at the given Vercel URL into an editable local project that matches it exactly.