← The Vault

Someone Built a Claude Code Skill That Clones Any Website

Not screenshots. It reads the actual DOM. Parallel builder agents reconstruct everything. The output is production-ready.


Someone Built a Claude Code Skill That Clones Any Website

There’s a new tool that takes any URL and gives you back a pixel-perfect, production-ready clone of the site. Not a screenshot. Not a rough approximation. The real thing, in code you can edit and deploy.

It’s called Perfect Web Clone and it works differently than anything else out there.

How it actually works

Most “clone this website” tools take a screenshot and then ask an LLM to write code that looks like the image. That approach tops out fast. You get something that looks vaguely right at one viewport size and falls apart everywhere else. No real CSS structure. No responsive behavior. No actual component architecture.

Perfect Web Clone reads the actual DOM. It parses the real CSS. It breaks the page into structured blocks and understands the relationships between them. Then it dispatches parallel builder agents that reconstruct each section simultaneously.

This is a multi-agent system with 40+ tools, built on the Claude Agent SDK. One agent analyzes the page structure. Others handle specific sections in parallel. Another assembles the final output. The result is real, structured code with proper component hierarchies. Not a flat wall of divs styled with inline CSS.

There’s also a simpler approach from JCodesMore that works through Chrome MCP, basically letting Claude see and interact with the browser directly. Different architecture, same idea: read the actual site, not a picture of it.

Why this is a bigger deal than it sounds

The obvious use case is “I want a site that looks like that one.” Fine. That saves you a few hours of frontend work. But that’s the boring version.

The interesting version is what this means for prototyping speed. You find a landing page you like. Clone it. Rip out their content, drop in yours. You just went from “I need to design a landing page” to “I need to edit some text and swap some images.” That’s a totally different task with a totally different timeline.

For agencies and freelancers, this is a legitimate shift. Client says “I want something like this site.” You clone it in minutes, customize it, and present a working prototype in the first meeting. That used to take a week of back-and-forth with mockups.

For product teams, it’s rapid competitive analysis made tangible. Don’t just study a competitor’s UX. Clone it. Drop it next to yours. The comparison gets very real very fast when you can click through both.

What to do about it

Try it on a site you admire. See what the output quality looks like for your use case. The multi-agent architecture means results are genuinely better than single-pass approaches, but it also means it burns more tokens. Worth understanding the tradeoff for your workflow.

If you’re building anything with multi-agent coordination, study the repo. The pattern of “analyzer agent breaks problem into pieces, builder agents work in parallel, assembler agent combines results” is reusable far beyond web cloning.

The tools are catching up to the vision. A year ago, “AI clones websites” meant “AI makes something that sort of looks like the screenshot if you squint.” Now it means reading the actual source of truth and reconstructing it properly. That gap keeps closing. Plan accordingly.