← All posts

July 3, 2026

This FREE AI Tool Clones ANY Website with ONE Command (I Tested It)

claude-codeai-agentsweb-devopen-source

Point an AI coding agent at any website, run /clone-website, and get a clean Next.js 16 rebuild. That's the promise of the AI Website Cloner Template — 24.9k+ GitHub stars — and in this video I test it for real: rebuilding the Ollama homepage on my own machine, real assets, real content, real code, in minutes.

What it actually is

Not an app — a template. You clone the repo, open it in Claude Code (or Cursor), and the repo itself teaches your agent how to clone websites. The stack it produces: Next.js 16, Tailwind CSS, shadcn/ui.

The 5-phase pipeline

The clone command walks a structured pipeline instead of one "please copy this site" prompt:

  1. Capture the target (screenshots, DOM, assets)
  2. Analyze layout and design system
  3. Plan the component tree
  4. Build page by page
  5. Verify side by side against the original

SKILL.md — the secret sauce

The brilliant part is the architecture: a SKILL.md multi-agent setup. The skill file encodes the whole methodology — what to look at, how to decompose the page, which agent handles which phase — so the LLM isn't improvising. It's the same lesson as every good agent build: the value is in the process encoded around the model, not the model itself. Worth reading the repo just for this file.

The real test: ollama.com

Setup on my Windows laptop (honest warning from the video: Node 24 required — older versions bite). Then the clone: point it at ollama.com, run the command, wait.

The result, side by side with the original: layout, typography, assets, and content all land. A live browser recording in the video shows the rebuilt site running locally. Is it pixel-perfect? No. Is it a legitimate starting codebase that looks like the site? Yes.

Pros and cons

Pros — free; clean modern stack out; the SKILL.md architecture is genuinely instructive; real assets and content captured, not lorem ipsum.

Cons — complex interactive sites (dashboards, apps) clone shallow; Node version friction; and obviously: clone for learning, prototypes, and your own migrations — not for ripping off someone's product.

Verdict

As a "steal this site" button it's overhyped; as a way to bootstrap a codebase from a design you admire — or to study how multi-agent skills should be structured — it's excellent. Repo: github.com/JCodesMore/ai-website-cloner-template. Full live clone in the video.

▶ Subscribe on YouTube