用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/JCodesMore/ai-website-cloner-template --skill clone-website命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | clone-website |
| description | Reverse-engineer and clone one or more websites as pixel-perfect replicas |
You are about to reverse-engineer and rebuild the target URL or URLs provided by the user as pixel-perfect clones.
When multiple URLs are provided, preserve every pathname as a distinct route and isolate each target's research, screenshots, components, and assets. URLs that differ only by query string or fragment share a pathname, so resolve their route and state behavior explicitly in the output plan. Parallelize page work only after the shared foundation and output plan are fixed so concurrent builders cannot overwrite one another.
This is not a two-phase process (inspect then build). You are a foreman walking the job site — as you inspect each section of the page, you write a detailed specification to a file, then hand that file to a specialist builder agent with everything they need. Extraction and construction happen in parallel, but extraction is meticulous and produces auditable artifacts.
The target is whatever page the target URL or URLs provided by the user resolves to. Clone exactly what's visible at that URL. Unless the user specifies otherwise, use these defaults:
If the user provides additional instructions (specific fidelity level, customizations, extra context), honor those over the defaults.
Treat every target URL as durable project output, not as permission to replace whatever was built previously.
Choose an <app-root> before extraction. For a single application, <app-root> is the repository root (.). If different origins need separate applications, require the user to provide or approve a prepared Next.js project root for each origin; verify each root builds independently, and never write one origin's output into another root.
Then assign each target:
<site-key>: a readable origin slug (including a non-default port) plus the first 8 lowercase hex characters of SHA-256 over the normalized origin.<page-key>: a segment-preserving readable pathname slug plus the first 8 lowercase hex characters of SHA-256 over the normalized pathname and any stateful query/fragment; use root-<hash> for /. Never rely on lossy character replacement alone.<app-root>/docs/research/<site-key>/<page-key>/.<app-root>/docs/design-references/<site-key>/<page-key>/.<app-root>/src/components/sites/<site-key>/<page-key>/, with genuinely shared same-site components under <app-root>/src/components/sites/<site-key>/shared/.<app-root>/public/sites/<site-key>/<page-key>/, with genuinely shared same-site assets under <app-root>/public/sites/<site-key>/shared/.All paths in the remaining phases are relative to that target's <app-root>. Before writing, verify that every planned route, artifact root, screenshot root, component root, asset root, and downloader filename is unique or is an explicitly approved shared location.
Routing defaults:
src/app/page.tsx may be replaced so the clone remains available at /./docs/intro becomes <app-root>/src/app/docs/intro/page.tsx). Encode filesystem segment names that would invoke App Router syntax: escape a leading _ or @, and literal parentheses or square brackets, with percent-encoded folder spellings rather than creating private folders, slots, route groups, or dynamic segments. Verify the built route resolves at the exact normalized URL before completion.src/app/**/page.tsx before writing. Never delete or replace a non-scaffold route, component tree, research folder, screenshot, or asset namespace unless the user explicitly approves that exact replacement.the target URL or URLs provided by the user as one or more URLs. Normalize and validate each URL; if any are invalid, ask the user to correct them before proceeding. For each valid URL, verify it is accessible via your browser MCP tool.npm run build. The Next.js + shadcn/ui + Tailwind v4 scaffold should already be in place. If not, tell the user to set it up first.src/app/**/page.tsx), site component namespaces, research artifacts, screenshots, and public assets. Distinguish the untouched template scaffold from existing cloned or user-authored work.<app-root>, <site-key>, <page-key>, destination route, artifact roots, and whether any shared foundation file must change. Resolve collisions across every planned output, same-path query/fragment behavior, and multi-origin layout decisions with the user before editing.scripts/ if needed. Use unique asset-download script names such as scripts/download-assets-<site-key>-<page-key>.mjs; do not overwrite another page's downloader.These are the truths that separate a successful clone from a "close enough" mess. Internalize them — they should inform every decision you make.
Every builder agent must receive everything it needs to do its job perfectly: screenshot, exact CSS values, downloaded assets with local paths, real text content, component structure. If a builder has to guess anything — a color, a font size, a padding value — you have failed at extraction. Take the extra minute to extract one more property rather than shipping an incomplete brief.
When an agent gets "build the entire features section," it glosses over details — it approximates spacing, guesses font sizes, and produces something "close enough" but clearly wrong. When it gets a single focused component with exact CSS values, it nails it every time.
Look at each section and judge its complexity. A simple banner with a heading and a button? One agent. A complex section with 3 different card variants, each with unique hover states and internal layouts? One agent per card variant plus one for the section wrapper. When in doubt, make it smaller.
Complexity budget rule: If a builder prompt exceeds ~150 lines of spec content, the section is too complex for one agent. Break it into smaller pieces. This is a mechanical check — don't override it with "but it's all related."
Extract the actual text, images, videos, and SVGs from the live site. This is a clone, not a mockup. Use element.textContent, download every <img> and <video>, extract inline <svg> elements as React components. Generate content only when it is clearly server-generated and unique per session, or when the optional Atlas Cloud fallback below is explicitly approved after the original asset proves unrecoverable.
Layered assets matter. A section that looks like one image is often multiple layers — a background watercolor/gradient, a foreground UI mockup PNG, an overlay icon. Inspect each container's full DOM tree and enumerate ALL <img> elements and background images within it, including absolutely-positioned overlays. Missing an overlay image makes the clone look empty even if the background is correct.
Nothing can be built until the foundation exists: global CSS with the target site's design tokens (colors, fonts, spacing), TypeScript types for the content structures, and global assets (fonts, favicons). This is sequential and non-negotiable. Everything after this can be parallel.
A website is not a screenshot — it's a living thing. Elements move, change, appear, and disappear in response to scrolling, hovering, clicking, resizing, and time. If you only extract the static CSS of each element, your clone will look right in a screenshot but feel dead when someone actually uses it.
For every element, extract its appearance (exact computed CSS via getComputedStyle()) AND its behavior (what changes, what triggers the change, and how the transition happens). Not "it looks like 16px" — extract the actual computed value. Not "the nav changes on scroll" — document the exact trigger (scroll position, IntersectionObserver threshold, viewport intersection), the before and after states (both sets of CSS values), and the transition (duration, easing, CSS transition vs. JS-driven vs. CSS animation-timeline).
Examples of behaviors to watch for — these are illustrative, not exhaustive. The page may do things not on this list, and you must catch those too:
scroll-snap-type).lenis class or scroll container wrappersThis is the single most expensive mistake in cloning: building a click-based UI when the original is scroll-driven, or vice versa. Before writing any builder prompt for an interactive section, you must definitively answer: Is this section driven by clicks, scrolls, hovers, time, or some combination?
How to determine this:
IntersectionObserver, scroll-snap, position: sticky, animation-timeline, or JS scroll listeners.A section with a sticky sidebar and scrolling content panels is fundamentally different from a tabbed interface where clicking switches content. Getting this wrong means a complete rewrite, not a CSS tweak.
Many components have multiple visual states — a tab bar shows different cards per tab, a header looks different at scroll position 0 vs 100, a card has hover effects. You must extract ALL states, not just whatever is visible on page load.
For tabbed/stateful content:
For scroll-dependent elements:
Every component gets a specification file under that page's artifact root (docs/research/<site-key>/<page-key>/components/) BEFORE any builder is dispatched. This file is the contract between your extraction work and the builder agent. The builder receives the spec file contents inline in its prompt — the file also persists as an auditable artifact that the user (or you) can review if something looks wrong.
The spec file is not optional. It is not a nice-to-have. If you dispatch a builder without first writing a spec file, you are shipping incomplete instructions based on whatever you can remember from a browser MCP session, and the builder will guess to fill gaps.
Every builder agent must verify npx tsc --noEmit passes before finishing. After merging worktrees, you verify npm run build passes. A broken build is never acceptable, even temporarily.
Navigate to the target URL with browser MCP.
docs/design-references/<site-key>/<page-key>/) with descriptive namesExtract these from the page before doing anything else:
Fonts — Inspect <link> tags for Google Fonts or self-hosted fonts. Check computed font-family on key elements (headings, body, code, labels). Document every family, weight, and style actually used. For a single-site app, configure shared fonts in src/app/layout.tsx using next/font/google or next/font/local. In an approved combined multi-site app, keep incompatible fonts/layout concerns route-scoped.
Colors — Extract the site's color palette from computed styles across the page. For a single-site app, merge the target's colors into src/app/globals.css without removing tokens required by existing routes. Map them to shadcn's token names (background, foreground, primary, muted, etc.) where they fit. In an approved combined multi-site app, use a route wrapper or scoped token namespace instead of replacing another site's global palette.
Favicons & Meta — Download page/site SEO assets under the planned site asset namespace. Put truly app-global metadata in the root layout only when it applies to every route; otherwise export route-specific metadata from the destination page or a route layout.
Global UI patterns — Identify any site-wide CSS or JS: custom scrollbar hiding, scroll-snap on the page container, global keyframe animations, backdrop filters, gradients used as overlays, smooth scroll libraries (Lenis, Locomotive Scroll — check for .lenis, .locomotive-scroll, or custom scroll container classes). Merge truly shared behavior into globals.css; keep page-specific behavior scoped to the page so existing routes do not change unexpectedly.
This is a dedicated pass AFTER screenshots and BEFORE anything else. Its purpose is to discover every behavior on the page — many of which are invisible in a static screenshot.
Scroll sweep: Scroll the page slowly from top to bottom via browser MCP. At each section, pause and observe:
Click sweep: Click every element that looks interactive:
Hover sweep: Hover over every element that might have hover states:
Responsive sweep: Test at 3 viewport widths via browser MCP:
Save all findings to <artifact-root>/BEHAVIORS.md. This is your behavior bible — reference it when writing every component spec.
Map out every distinct section of the page from top to bottom. Give each a working name. Document:
Save this as <artifact-root>/PAGE_TOPOLOGY.md — it becomes your assembly blueprint.
This is sequential per origin. Do it yourself (not delegated to an agent) since it touches shared files. Re-read the output plan and preserve every existing route before editing:
src/components/sites/<site-key>/shared/icons.tsx; keep page-only icons in the page component namespace. Name them by visual function (e.g., SearchIcon, ArrowRightIcon, LogoIcon).public/sites/<site-key>/<page-key>/ or the approved same-site shared directory. Never write a generic filename over another page's asset.npm run build.Use browser MCP to enumerate all assets on the page:
// Run this via browser MCP to discover all assets
JSON.stringify({
images: [...document.querySelectorAll('img')].map(img => ({
src: img.src || img.currentSrc,
alt: img.alt,
width: img.naturalWidth,
height: img.naturalHeight,
// Include parent info to detect layered compositions
parentClasses: img.parentElement?.className,
siblings: img.parentElement ? [...img.parentElement.querySelectorAll('img')].length : 0,
position: getComputedStyle(img).position,
zIndex: getComputedStyle(img).zIndex
})),
videos: [...document.querySelectorAll('video')].map(v => ({
src: v.src || v.querySelector('source')?.src,
poster: v.poster,
autoplay: v.,
: v.,
: v.
})),
: [....()].( {
bg = (el).;
bg && bg !== ;
}).( ({
: (el).,
: el. + + el.?.()[]
})),
: .().,
: [... ([....()].(, ).( (el).))],
: [....()].( ({ : l., : l.?.() }))
});
Then use the uniquely named page download script to fetch everything into its planned asset root. Use batched parallel downloads (4 at a time) with proper error handling.
This is an exception path, not part of the default clone workflow. Use it only when all of the following are true:
ATLASCLOUD_API_KEY is available from the environment. Never print it, place it in a URL, save it in an artifact, or send it to an output CDN.When approved, follow this contract:
GET https://api.atlascloud.ai/api/v1/models and choose a currently available Image model that supports the required aspect ratio and style. Do not rely on a stale hard-coded model list.schema URL and validate the payload against its current required fields before submitting. qwen-image-3.0/text-to-image is an example, not a permanent default.POST https://api.atlascloud.ai/api/v1/model/generateImage request. Do not automatically retry the generation POST; surface an ambiguous or failed submission to the user.GET https://api.atlascloud.ai/api/v1/model/prediction/<id> with bounded backoff (for example, every 3 seconds for at most 40 attempts). Stop immediately on completed or failed.<artifact-root>/ARTIFACT_MANIFEST.md. Label the file as generated fallback material so builders never treat it as an exact original.If any condition is not met, keep the missing-asset finding in the artifact manifest and continue without fabricating the source site's identity.
This is the core loop. For each section in your page topology (top to bottom), you do THREE things: extract, write the spec file, then dispatch builders.
For each section, use browser MCP to extract everything:
Screenshot the section in isolation (scroll to it, screenshot the viewport). Save to the page's screenshot root.
Extract CSS for every element in the section. Use the extraction script below — don't hand-measure individual properties. Run it once per component container and capture the full output:
// Per-component extraction — run via browser MCP
// Replace SELECTOR with the actual CSS selector for the component
(function(selector) {
const el = document.querySelector(selector);
if (!el) return JSON.stringify({ error: 'Element not found: ' + selector });
const props = [
'fontSize','fontWeight','fontFamily','lineHeight','letterSpacing','color',
'textTransform','textDecoration','backgroundColor','background',
'padding','paddingTop','paddingRight','paddingBottom','paddingLeft',
'margin','marginTop','marginRight','marginBottom','marginLeft',
'width','height','maxWidth','minWidth','maxHeight','minHeight',
'display','flexDirection','justifyContent','alignItems','gap',
'gridTemplateColumns','gridTemplateRows',
'borderRadius','border','borderTop',,,,
,,,,
,,,,,,
,,,,
,,,,,
,,
];
() {
cs = (element);
styles = {};
props.( { v = cs[p]; (v && v !== && v !== && v !== && v !== && v !== ) styles[p] = v; });
styles;
}
() {
(depth > ) ;
children = [...element.];
{
: element..(),
: element.?.().().(, ).(),
: element.. === && element.[]. === ? element..().(, ) : ,
: (element),
: element. === ? { : element., : element., : element., : element. } : ,
: children.,
: children.(, ).( (c, depth + )).()
};
}
.((el, ), , );
})();
// State A: capture styles at current state (e.g., scroll position 0)
// Then trigger the state change (scroll, click, hover via browser MCP)
// State B: re-run the extraction script on the same element
// The diff between A and B IS the behavior specification
Record the diff explicitly: "Property X changes from VALUE_A to VALUE_B, triggered by TRIGGER, with transition: TRANSITION_CSS."
Extract real content — all text, alt attributes, aria labels, placeholder text. Use element.textContent for each text node. For tabbed/stateful content, click each tab and extract content per state.
Identify assets this section uses — which namespaced downloaded images/videos and which site/page icon components. Check for layered images (multiple <img> or background-images stacked in the same container).
Assess complexity — how many distinct sub-components does this section contain? A distinct sub-component is an element with its own unique styling, structure, and behavior (e.g., a card, a nav item, a search panel).
For each section (or sub-component, if you're breaking it up), create a spec file inside the page's component-spec directory. This is NOT optional — every builder must have a corresponding spec file.
File path: docs/research/<site-key>/<page-key>/components/<component-name>.spec.md
Template:
# <ComponentName> Specification
## Overview
- **Target file:** `src/components/sites/<site-key>/<page-key>/<ComponentName>.tsx`
- **Screenshot:** `docs/design-references/<site-key>/<page-key>/<screenshot-name>.png`
- **Interaction model:** <static | click-driven | scroll-driven | time-driven>
## DOM Structure
<Describe the element hierarchy — what contains what>
## Computed Styles (exact values from getComputedStyle)
### Container
- display: ...
- padding: ...
- maxWidth: ...
- (every relevant property with exact values)
### <Child element 1>
- fontSize: ...
- color: ...
- (every relevant property)
### <Child element N>
...
## States & Behaviors
### <Behavior name, e.g., " ">
maxWidth: 100vw, boxShadow: none, borderRadius: 0
maxWidth: 1200px, boxShadow: 0 4px 20px rgba(0,0,0,0.1), borderRadius: 16px
transition: all 0.3s ease
: → , transition:
Title: "..."
Subtitle: "..."
Cards: [{ title, description, image, link }, ...]
Title: "..."
Cards: [...]
Background image:
Overlay image:
Icons used: , from the planned page or same-site shared icon module
layout switches at ~px
Fill every section. If a section doesn't apply (e.g., no states for a static footer), write "N/A" — but think twice before marking States & Behaviors as N/A. Even a footer might have hover states on links.
Based on complexity, dispatch builder agent(s) in worktree(s):
Simple section (1-2 sub-components): One builder agent gets the entire section.
Complex section (3+ distinct sub-components): Break it up. One agent per sub-component, plus one agent for the section wrapper that imports them. Sub-component builders go first since the wrapper depends on them.
What every builder agent receives:
cn(), shadcn primitives)src/components/sites/<site-key>/<page-key>/HeroSection.tsx)npx tsc --noEmit before finishingDon't wait. As soon as you've dispatched the builder(s) for one section, move to extracting the next section. Builders work in parallel in their worktrees while you continue extraction.
As builder agents complete their work:
npm run buildThe extract → spec → dispatch → merge cycle continues until all sections are built.
After all sections are built and merged, wire the page into the exact destination route from the approved output plan. Use src/app/page.tsx only for the first fresh-template root clone; otherwise use the planned path such as src/app/docs/intro/page.tsx:
npm run build passes cleanAfter assembly, do NOT declare the clone complete. Take side-by-side comparison screenshots:
Only after this visual QA pass is the clone complete.
Before dispatching ANY builder agent, verify you can check every box. If you can't, go back and extract more.
docs/research/<site-key>/<page-key>/components/<name>.spec.md with ALL sections filledgetComputedStyle(), not estimatedThese are lessons from previous failed clones — each one cost hours of rework:
<img> elements and positioned overlays.<video>, Lottie, or canvas before building elaborate HTML mockups of what the video shows.text-lg" is wrong if the computed value is 18px and text-lg is 18px/28px but the actual line-height is 24px. Extract exact values..lenis class), Locomotive Scroll, or similar. Default browser scrolling feels noticeably different and the user will spot it immediately.When done, report:
npm run build result)基于 SOC 职业分类