This template turns AI coding agents into website reverse-engineering tools. Point it at a URL, run a single command, and the agent inspects the live site, extracts design tokens and assets, writes component specs, and rebuilds the page as a Next.js app. It's built for developers who need to recreate a site's front end without starting from a blank editor, and who already work inside an AI coding agent like Claude Code, Cursor, or Codex CLI.
Under the hood it's a pre-wired Next.js 16 project (App Router, React 19, TypeScript strict) with shadcn/ui and Tailwind CSS v4 already configured, plus a /clone-website skill that drives a multi-phase pipeline: reconnaissance, foundation setup, component spec writing, parallel builds via git worktrees, and a final visual-diff QA pass.
/clone-website <url> inside your AI agent and it handles inspection, extraction, and rebuilding end to end.getComputedStyle() values, colors, fonts, and spacing instead of guessing from screenshots.AGENTS.md drives per-platform config files (CLAUDE.md, GEMINI.md, etc.) via a sync script.git clone https://github.com/YOUR-USERNAME/YOUR-NEW-REPOSITORY.git
cd YOUR-NEW-REPOSITORY
npm install
claude --chrome
/clone-website <target-url1> [<target-url2> ...]
Prerequisites: Node.js 24+ and one of the supported AI coding agents. If you're using an agent other than Claude Code, open AGENTS.md for project instructions, most agents pick it up automatically.
Useful commands once the project is set up:
npm run dev # Start dev server
npm run build # Production build
npm run lint # ESLint check
npm run typecheck # TypeScript check
npm run check # lint + typecheck + build
Docker is also supported:
docker compose up app --build # build and run the app
docker compose up dev --build # dev mode on port 3001