Reve AI
리소스 마켓
Tool개발무료

ai-website-cloner-template

Clone any website with one command using AI coding agents

12k

AI Website Cloner Template

A reusable template for reverse-engineering any website into a clean, modern Next.js codebase using AI coding agents.

Recommended: Claude Code with Opus 4.6 for best results — but works with a variety of AI coding agents.

Point it at a URL, run /clone-website, and your AI agent will inspect the site, extract design tokens and assets, write component specs, and dispatch parallel builders to reconstruct every section.

Demo

Watch the demo

Click the image above to watch the full demo on YouTube.

Quick Start

  1. Clone this repository
    git clone https://github.com/JCodesMore/ai-website-cloner-template.git my-clone
    cd my-clone
    
  2. Install dependencies
    npm install
    
  3. Start your AI agent — Claude Code recommended:
    claude --chrome
    
  4. Run the skill:
    /clone-website <target-url1> [<target-url2> ...]
    
  5. Customize (optional) — after the base clone is built, modify as needed

Using a different agent? Open AGENTS.md for project instructions — most agents pick it up automatically.

Supported Platforms

AgentStatus
Claude CodeRecommended — Opus 4.6
Codex CLISupported
OpenCodeSupported
GitHub CopilotSupported
CursorSupported
WindsurfSupported
Gemini CLISupported
ClineSupported
Roo CodeSupported
ContinueSupported
Amazon QSupported
Augment CodeSupported
AiderSupported

Prerequisites

Tech Stack

  • Next.js 16 — App Router, React 19, TypeScript strict
  • shadcn/ui — Radix primitives + Tailwind CSS v4
  • Tailwind CSS v4 — oklch design tokens
  • Lucide React — default icons (replaced by extracted SVGs during cloning)

How It Works

The /clone-website skill runs a multi-phase pipeline:

  1. Reconnaissance — screenshots, design token extraction, interaction sweep (scroll, click, hover, responsive)
  2. Foundation — updates fonts, colors, globals, downloads all assets
  3. Component Specs — writes detailed spec files (docs/research/components/) with exact computed CSS values, states, behaviors, and content
  4. Parallel Build — dispatches builder agents in git worktrees, one per section/component
  5. Assembly & QA — merges worktrees, wires up the page, runs visual diff against the original

Each builder agent receives the full component specification inline — exact getComputedStyle() values, interaction models, multi-state content, responsive breakpoints, and asset paths. No guessing.

Use Cases


GitHub에서 전체 내용 보기