launchframe 0.4.0 → 0.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,476 +1,490 @@
1
- # AUTO-GENERATED from .claude/skills/clone-website/SKILL.md
2
- # Run `node scripts/sync-skills.mjs` to regenerate.
3
-
4
- description = "Reverse-engineer and clone any website as a pixel-perfect replica"
5
-
6
- [prompt]
7
- text = '''
8
-
9
- # Clone Website
10
-
11
- You are about to reverse-engineer and rebuild **{{args}}** as pixel-perfect clones.
12
-
13
- When multiple URLs are provided, process them independently and in parallel where possible, while keeping each site's extraction artifacts isolated in dedicated folders (for example, `docs/research/<hostname>/`).
14
-
15
- 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.
16
-
17
- ## Scope Defaults
18
-
19
- The target is whatever page `{{args}}` resolves to. Clone exactly what's visible at that URL. Unless the user specifies otherwise, use these defaults:
20
-
21
- - **Fidelity level:** Pixel-perfect — exact match in colors, spacing, typography, animations
22
- - **In scope:** Visual layout and styling, component structure and interactions, responsive design, mock data for demo purposes
23
- - **Out of scope:** Real backend / database, authentication, real-time features, SEO optimization, accessibility audit
24
- - **Customization:** None — pure emulation
25
-
26
- If the user provides additional instructions (specific fidelity level, customizations, extra context), honor those over the defaults.
27
-
28
- ## Pre-Flight
29
-
30
- 1. **Browser automation is required.** Check for available browser MCP tools (Chrome MCP, Playwright MCP, Browserbase MCP, Puppeteer MCP, etc.). Use whichever is available — if multiple exist, prefer Chrome MCP. If none are detected, ask the user which browser tool they have and how to connect it. This skill cannot work without browser automation.
31
- 2. Parse `{{args}}` 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.
32
- 3. Verify the base project builds: `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.
33
- 4. Create the output directories if they don't exist: `docs/research/`, `docs/research/components/`, `docs/design-references/`, `scripts/`. For multiple clones, also prepare per-site folders like `docs/research/<hostname>/` and `docs/design-references/<hostname>/`.
34
- 5. When working with multiple sites in one command, optionally confirm whether to run them in parallel (recommended, if resources allow) or sequentially to avoid overload.
35
-
36
- ## Guiding Principles
37
-
38
- These are the truths that separate a successful clone from a "close enough" mess. Internalize them — they should inform every decision you make.
39
-
40
- ### 1. Completeness Beats Speed
41
-
42
- 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.
43
-
44
- ### 2. Small Tasks, Perfect Results
45
-
46
- 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.
47
-
48
- 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.
49
-
50
- **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."
51
-
52
- ### 3. Real Content, Real Assets
53
-
54
- 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. The only time you generate content is when something is clearly server-generated and unique per session.
55
-
56
- **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.
57
-
58
- ### 4. Foundation First
59
-
60
- 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.
61
-
62
- ### 5. Extract How It Looks AND How It Behaves
63
-
64
- 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.
65
-
66
- 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`).
67
-
68
- Examples of behaviors to watch forthese are illustrative, not exhaustive. The page may do things not on this list, and you must catch those too:
69
- - A navbar that shrinks, changes background, or gains a shadow after scrolling past a threshold
70
- - Elements that animate into view when they enter the viewport (fade-up, slide-in, stagger delays)
71
- - Sections that snap into place on scroll (`scroll-snap-type`)
72
- - Parallax layers that move at different rates than the scroll
73
- - Hover states that animate (not just change — the transition duration and easing matter)
74
- - Dropdowns, modals, accordions with enter/exit animations
75
- - Scroll-driven progress indicators or opacity transitions
76
- - Auto-playing carousels or cycling content
77
- - Dark-to-light (or any theme) transitions between page sections
78
- - **Tabbed/pill content that cycles** — buttons that switch visible card sets with transitions
79
- - **Scroll-driven tab/accordion switching** — sidebars where the active item auto-changes as content scrolls past (IntersectionObserver, NOT click handlers)
80
- - **Smooth scroll libraries** (Lenis, Locomotive Scroll) check for `.lenis` class or scroll container wrappers
81
-
82
- ### 6. Identify the Interaction Model Before Building
83
-
84
- This 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?**
85
-
86
- How to determine this:
87
- 1. **Don't click first.** Scroll through the section slowly and observe if things change on their own as you scroll.
88
- 2. If they do, it's scroll-driven. Extract the mechanism: `IntersectionObserver`, `scroll-snap`, `position: sticky`, `animation-timeline`, or JS scroll listeners.
89
- 3. If nothing changes on scroll, THEN click/hover to test for click/hover-driven interactivity.
90
- 4. Document the interaction model explicitly in the component spec: "INTERACTION MODEL: scroll-driven with IntersectionObserver" or "INTERACTION MODEL: click-to-switch with opacity transition."
91
-
92
- 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.
93
-
94
- ### 7. Extract Every State, Not Just the Default
95
-
96
- 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.
97
-
98
- For tabbed/stateful content:
99
- - Click each tab/button via browser MCP
100
- - Extract the content, images, and card data for EACH state
101
- - Record which content belongs to which state
102
- - Note the transition animation between states (opacity, slide, fade, etc.)
103
-
104
- For scroll-dependent elements:
105
- - Capture computed styles at scroll position 0 (initial state)
106
- - Scroll past the trigger threshold and capture computed styles again (scrolled state)
107
- - Diff the two to identify exactly which CSS properties change
108
- - Record the transition CSS (duration, easing, properties)
109
- - Record the exact trigger threshold (scroll position in px, or viewport intersection ratio)
110
-
111
- ### 8. Spec Files Are the Source of Truth
112
-
113
- Every component gets a specification file in `docs/research/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.
114
-
115
- 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.
116
-
117
- ### 9. Build Must Always Compile
118
-
119
- 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.
120
-
121
- ## Phase 1: Reconnaissance
122
-
123
- Navigate to the target URL with browser MCP.
124
-
125
- ### Screenshots
126
- - Take **full-page screenshots** at desktop (1440px) and mobile (390px) viewports
127
- - Save to `docs/design-references/` with descriptive names
128
- - These are your master reference — builders will receive section-specific crops/screenshots later
129
-
130
- ### Global Extraction
131
- Extract these from the page before doing anything else:
132
-
133
- **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. Configure them in `src/app/layout.tsx` using `next/font/google` or `next/font/local`.
134
-
135
- **Colors** Extract the site's color palette from computed styles across the page. Update `src/app/globals.css` with the target's actual colors in the `:root` and `.dark` CSS variable blocks. Map them to shadcn's token names (background, foreground, primary, muted, etc.) where they fit. Add custom properties for colors that don't map to shadcn tokens.
136
-
137
- **Favicons & Meta** Download favicons, apple-touch-icons, OG images, webmanifest to `public/seo/`. Update `layout.tsx` metadata.
138
-
139
- **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). Add these to `globals.css` and note any libraries that need to be installed.
140
-
141
- ### Mandatory Interaction Sweep
142
-
143
- 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.
144
-
145
- **Scroll sweep:** Scroll the page slowly from top to bottom via browser MCP. At each section, pause and observe:
146
- - Does the header change appearance? Record the scroll position where it triggers.
147
- - Do elements animate into view? Record which ones and the animation type.
148
- - Does a sidebar or tab indicator auto-switch as you scroll? Record the mechanism.
149
- - Are there scroll-snap points? Record which containers.
150
- - Is there a smooth scroll library active? Check for non-native scroll behavior.
151
-
152
- **Click sweep:** Click every element that looks interactive:
153
- - Every button, tab, pill, link, card
154
- - Record what happens: does content change? Does a modal open? Does a dropdown appear?
155
- - For tabs/pills: click EACH ONE and record the content that appears for each state
156
-
157
- **Hover sweep:** Hover over every element that might have hover states:
158
- - Buttons, cards, links, images, nav items
159
- - Record what changes: color, scale, shadow, underline, opacity
160
-
161
- **Responsive sweep:** Test at 3 viewport widths via browser MCP:
162
- - Desktop: 1440px
163
- - Tablet: 768px
164
- - Mobile: 390px
165
- - At each width, note which sections change layout (column → stack, sidebar disappears, etc.) and at approximately which breakpoint the change occurs.
166
-
167
- Save all findings to `docs/research/BEHAVIORS.md`. This is your behavior bible — reference it when writing every component spec.
168
-
169
- ### Page Topology
170
- Map out every distinct section of the page from top to bottom. Give each a working name. Document:
171
- - Their visual order
172
- - Which are fixed/sticky overlays vs. flow content
173
- - The overall page layout (scroll container, column structure, z-index layers)
174
- - Dependencies between sections (e.g., a floating nav that overlays everything)
175
- - **The interaction model** of each section (static, click-driven, scroll-driven, time-driven)
176
-
177
- Save this as `docs/research/PAGE_TOPOLOGY.md` — it becomes your assembly blueprint.
178
-
179
- ## Phase 2: Foundation Build
180
-
181
- This is sequential. Do it yourself (not delegated to an agent) since it touches many files:
182
-
183
- 1. **Update fonts** in `layout.tsx` to match the target site's actual fonts
184
- 2. **Update globals.css** with the target's color tokens, spacing values, keyframe animations, utility classes, and any **global scroll behaviors** (Lenis, smooth scroll CSS, scroll-snap on body)
185
- 3. **Create TypeScript interfaces** in `src/types/` for the content structures you've observed
186
- 4. **Extract SVG icons** — find all inline `<svg>` elements on the page, deduplicate them, and save as named React components in `src/components/icons.tsx`. Name them by visual function (e.g., `SearchIcon`, `ArrowRightIcon`, `LogoIcon`).
187
- 5. **Download global assets** write and run a Node.js script (`scripts/download-assets.mjs`) that downloads all images, videos, and other binary assets from the page to `public/`. Preserve meaningful directory structure.
188
- 6. Verify: `npm run build` passes
189
-
190
- ### Asset Discovery Script Pattern
191
-
192
- Use browser MCP to enumerate all assets on the page:
193
-
194
- ```javascript
195
- // Run this via browser MCP to discover all assets
196
- JSON.stringify({
197
- images: [...document.querySelectorAll('img')].map(img => ({
198
- src: img.src || img.currentSrc,
199
- alt: img.alt,
200
- width: img.naturalWidth,
201
- height: img.naturalHeight,
202
- // Include parent info to detect layered compositions
203
- parentClasses: img.parentElement?.className,
204
- siblings: img.parentElement ? [...img.parentElement.querySelectorAll('img')].length : 0,
205
- position: getComputedStyle(img).position,
206
- zIndex: getComputedStyle(img).zIndex
207
- })),
208
- videos: [...document.querySelectorAll('video')].map(v => ({
209
- src: v.src || v.querySelector('source')?.src,
210
- poster: v.poster,
211
- autoplay: v.autoplay,
212
- loop: v.loop,
213
- muted: v.muted
214
- })),
215
- backgroundImages: [...document.querySelectorAll('*')].filter(el => {
216
- const bg = getComputedStyle(el).backgroundImage;
217
- return bg && bg !== 'none';
218
- }).map(el => ({
219
- url: getComputedStyle(el).backgroundImage,
220
- element: el.tagName + '.' + el.className?.split(' ')[0]
221
- })),
222
- svgCount: document.querySelectorAll('svg').length,
223
- fonts: [...new Set([...document.querySelectorAll('*')].slice(0, 200).map(el => getComputedStyle(el).fontFamily))],
224
- favicons: [...document.querySelectorAll('link[rel*="icon"]')].map(l => ({ href: l.href, sizes: l.sizes?.toString() }))
225
- });
226
- ```
227
-
228
- Then write a download script that fetches everything to `public/`. Use batched parallel downloads (4 at a time) with proper error handling.
229
-
230
- ## Phase 3: Component Specification & Dispatch
231
-
232
- 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**.
233
-
234
- ### Step 1: Extract
235
-
236
- For each section, use browser MCP to extract everything:
237
-
238
- 1. **Screenshot** the section in isolation (scroll to it, screenshot the viewport). Save to `docs/design-references/`.
239
-
240
- 2. **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:
241
-
242
- ```javascript
243
- // Per-component extraction — run via browser MCP
244
- // Replace SELECTOR with the actual CSS selector for the component
245
- (function(selector) {
246
- const el = document.querySelector(selector);
247
- if (!el) return JSON.stringify({ error: 'Element not found: ' + selector });
248
- const props = [
249
- 'fontSize','fontWeight','fontFamily','lineHeight','letterSpacing','color',
250
- 'textTransform','textDecoration','backgroundColor','background',
251
- 'padding','paddingTop','paddingRight','paddingBottom','paddingLeft',
252
- 'margin','marginTop','marginRight','marginBottom','marginLeft',
253
- 'width','height','maxWidth','minWidth','maxHeight','minHeight',
254
- 'display','flexDirection','justifyContent','alignItems','gap',
255
- 'gridTemplateColumns','gridTemplateRows',
256
- 'borderRadius','border','borderTop','borderBottom','borderLeft','borderRight',
257
- 'boxShadow','overflow','overflowX','overflowY',
258
- 'position','top','right','bottom','left','zIndex',
259
- 'opacity','transform','transition','cursor',
260
- 'objectFit','objectPosition','mixBlendMode','filter','backdropFilter',
261
- 'whiteSpace','textOverflow','WebkitLineClamp'
262
- ];
263
- function extractStyles(element) {
264
- const cs = getComputedStyle(element);
265
- const styles = {};
266
- props.forEach(p => { const v = cs[p]; if (v && v !== 'none' && v !== 'normal' && v !== 'auto' && v !== '0px' && v !== 'rgba(0, 0, 0, 0)') styles[p] = v; });
267
- return styles;
268
- }
269
- function walk(element, depth) {
270
- if (depth > 4) return null;
271
- const children = [...element.children];
272
- return {
273
- tag: element.tagName.toLowerCase(),
274
- classes: element.className?.toString().split(' ').slice(0, 5).join(' '),
275
- text: element.childNodes.length === 1 && element.childNodes[0].nodeType === 3 ? element.textContent.trim().slice(0, 200) : null,
276
- styles: extractStyles(element),
277
- images: element.tagName === 'IMG' ? { src: element.src, alt: element.alt, naturalWidth: element.naturalWidth, naturalHeight: element.naturalHeight } : null,
278
- childCount: children.length,
279
- children: children.slice(0, 20).map(c => walk(c, depth + 1)).filter(Boolean)
280
- };
281
- }
282
- return JSON.stringify(walk(el, 0), null, 2);
283
- })('SELECTOR');
284
- ```
285
-
286
- 3. **Extract multi-state styles** — for any element with multiple states (scroll-triggered, hover, active tab), capture BOTH states:
287
-
288
- ```javascript
289
- // State A: capture styles at current state (e.g., scroll position 0)
290
- // Then trigger the state change (scroll, click, hover via browser MCP)
291
- // State B: re-run the extraction script on the same element
292
- // The diff between A and B IS the behavior specification
293
- ```
294
-
295
- Record the diff explicitly: "Property X changes from VALUE_A to VALUE_B, triggered by TRIGGER, with transition: TRANSITION_CSS."
296
-
297
- 4. **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**.
298
-
299
- 5. **Identify assets** this section uses — which downloaded images/videos from `public/`, which icon components from `icons.tsx`. Check for **layered images** (multiple `<img>` or background-images stacked in the same container).
300
-
301
- 6. **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).
302
-
303
- ### Step 2: Write the Component Spec File
304
-
305
- For each section (or sub-component, if you're breaking it up), create a spec file in `docs/research/components/`. This is NOT optional — every builder must have a corresponding spec file.
306
-
307
- **File path:** `docs/research/components/<component-name>.spec.md`
308
-
309
- **Template:**
310
-
311
- ```markdown
312
- # <ComponentName> Specification
313
-
314
- ## Overview
315
- - **Target file:** `src/components/<ComponentName>.tsx`
316
- - **Screenshot:** `docs/design-references/<screenshot-name>.png`
317
- - **Interaction model:** <static | click-driven | scroll-driven | time-driven>
318
-
319
- ## DOM Structure
320
- <Describe the element hierarchy — what contains what>
321
-
322
- ## Computed Styles (exact values from getComputedStyle)
323
-
324
- ### Container
325
- - display: ...
326
- - padding: ...
327
- - maxWidth: ...
328
- - (every relevant property with exact values)
329
-
330
- ### <Child element 1>
331
- - fontSize: ...
332
- - color: ...
333
- - (every relevant property)
334
-
335
- ### <Child element N>
336
- ...
337
-
338
- ## States & Behaviors
339
-
340
- ### <Behavior name, e.g., "Scroll-triggered floating mode">
341
- - **Trigger:** <exact mechanism — scroll position 50px, IntersectionObserver rootMargin "-30% 0px", click on .tab-button, hover>
342
- - **State A (before):** maxWidth: 100vw, boxShadow: none, borderRadius: 0
343
- - **State B (after):** maxWidth: 1200px, boxShadow: 0 4px 20px rgba(0,0,0,0.1), borderRadius: 16px
344
- - **Transition:** transition: all 0.3s ease
345
- - **Implementation approach:** <CSS transition + scroll listener | IntersectionObserver | CSS animation-timeline | etc.>
346
-
347
- ### Hover states
348
- - **<Element>:** <property>: <before> → <after>, transition: <value>
349
-
350
- ## Per-State Content (if applicable)
351
-
352
- ### State: "Featured"
353
- - Title: "..."
354
- - Subtitle: "..."
355
- - Cards: [{ title, description, image, link }, ...]
356
-
357
- ### State: "Productivity"
358
- - Title: "..."
359
- - Cards: [...]
360
-
361
- ## Assets
362
- - Background image: `public/images/<file>.webp`
363
- - Overlay image: `public/images/<file>.png`
364
- - Icons used: <ArrowIcon>, <SearchIcon> from icons.tsx
365
-
366
- ## Text Content (verbatim)
367
- <All text content, copy-pasted from the live site>
368
-
369
- ## Responsive Behavior
370
- - **Desktop (1440px):** <layout description>
371
- - **Tablet (768px):** <what changes — e.g., "maintains 2-column, gap reduces to 16px">
372
- - **Mobile (390px):** <what changes — e.g., "stacks to single column, images full-width">
373
- - **Breakpoint:** layout switches at ~<N>px
374
- ```
375
-
376
- 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.
377
-
378
- ### Step 3: Dispatch Builders
379
-
380
- Based on complexity, dispatch builder agent(s) in worktree(s):
381
-
382
- **Simple section** (1-2 sub-components): One builder agent gets the entire section.
383
-
384
- **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.
385
-
386
- **What every builder agent receives:**
387
- - The full contents of its component spec file (inline in the prompt — don't say "go read the spec file")
388
- - Path to the section screenshot in `docs/design-references/`
389
- - Which shared components to import (`icons.tsx`, `cn()`, shadcn primitives)
390
- - The target file path (e.g., `src/components/HeroSection.tsx`)
391
- - Instruction to verify with `npx tsc --noEmit` before finishing
392
- - For responsive behavior: the specific breakpoint values and what changes
393
-
394
- **Don'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.
395
-
396
- ### Step 4: Merge
397
-
398
- As builder agents complete their work:
399
- - Merge their worktree branches into main
400
- - You have full context on what each agent built, so resolve any conflicts intelligently
401
- - After each merge, verify the build still passes: `npm run build`
402
- - If a merge introduces type errors, fix them immediately
403
-
404
- The extract spec dispatch → merge cycle continues until all sections are built.
405
-
406
- ## Phase 4: Page Assembly
407
-
408
- After all sections are built and merged, wire everything together in `src/app/page.tsx`:
409
-
410
- - Import all section components
411
- - Implement the page-level layout from your topology doc (scroll containers, column structures, sticky positioning, z-index layering)
412
- - Connect real content to component props
413
- - Implement page-level behaviors: scroll snap, scroll-driven animations, dark-to-light transitions, intersection observers, smooth scroll (Lenis etc.)
414
- - Verify: `npm run build` passes clean
415
-
416
- ## Phase 5: Visual QA Diff
417
-
418
- After assembly, do NOT declare the clone complete. Take side-by-side comparison screenshots:
419
-
420
- 1. Open the original site and your clone side-by-side (or take screenshots at the same viewport widths)
421
- 2. Compare section by section, top to bottom, at desktop (1440px)
422
- 3. Compare again at mobile (390px)
423
- 4. For each discrepancy found:
424
- - Check the component spec file — was the value extracted correctly?
425
- - If the spec was wrong: re-extract from browser MCP, update the spec, fix the component
426
- - If the spec was right but the builder got it wrong: fix the component to match the spec
427
- 5. Test all interactive behaviors: scroll through the page, click every button/tab, hover over interactive elements
428
- 6. Verify smooth scroll feels right, header transitions work, tab switching works, animations play
429
-
430
- Only after this visual QA pass is the clone complete.
431
-
432
- ## Pre-Dispatch Checklist
433
-
434
- Before dispatching ANY builder agent, verify you can check every box. If you can't, go back and extract more.
435
-
436
- - [ ] Spec file written to `docs/research/components/<name>.spec.md` with ALL sections filled
437
- - [ ] Every CSS value in the spec is from `getComputedStyle()`, not estimated
438
- - [ ] Interaction model is identified and documented (static / click / scroll / time)
439
- - [ ] For stateful components: every state's content and styles are captured
440
- - [ ] For scroll-driven components: trigger threshold, before/after styles, and transition are recorded
441
- - [ ] For hover states: before/after values and transition timing are recorded
442
- - [ ] All images in the section are identified (including overlays and layered compositions)
443
- - [ ] Responsive behavior is documented for at least desktop and mobile
444
- - [ ] Text content is verbatim from the site, not paraphrased
445
- - [ ] The builder prompt is under ~150 lines of spec; if over, the section needs to be split
446
-
447
- ## What NOT to Do
448
-
449
- These are lessons from previous failed clones — each one cost hours of rework:
450
-
451
- - **Don't build click-based tabs when the original is scroll-driven (or vice versa).** Determine the interaction model FIRST by scrolling before clicking. This is the #1 most expensive mistake — it requires a complete rewrite, not a CSS fix.
452
- - **Don't extract only the default state.** If there are tabs showing "Featured" on load, click Productivity, Creative, Lifestyle and extract each one's cards/content. If the header changes on scroll, capture styles at position 0 AND position 100+.
453
- - **Don't miss overlay/layered images.** A background watercolor + foreground UI mockup = 2 images. Check every container's DOM tree for multiple `<img>` elements and positioned overlays.
454
- - **Don't build mockup components for content that's actually videos/animations.** Check if a section uses `<video>`, Lottie, or canvas before building elaborate HTML mockups of what the video shows.
455
- - **Don't approximate CSS classes.** "It looks like `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.
456
- - **Don't build everything in one monolithic commit.** The whole point of this pipeline is incremental progress with verified builds at each step.
457
- - **Don't reference docs from builder prompts.** Each builder gets the CSS spec inline in its prompt — never "see DESIGN_TOKENS.md for colors." The builder should have zero need to read external docs.
458
- - **Don't skip asset extraction.** Without real images, videos, and fonts, the clone will always look fake regardless of how perfect the CSS is.
459
- - **Don't give a builder agent too much scope.** If you're writing a builder prompt and it's getting long because the section is complex, that's a signal to break it into smaller tasks.
460
- - **Don't bundle unrelated sections into one agent.** A CTA section and a footer are different components with different designs — don't hand them both to one agent and hope for the best.
461
- - **Don't skip responsive extraction.** If you only inspect at desktop width, the clone will break at tablet and mobile. Test at 1440, 768, and 390 during extraction.
462
- - **Don't forget smooth scroll libraries.** Check for Lenis (`.lenis` class), Locomotive Scroll, or similar. Default browser scrolling feels noticeably different and the user will spot it immediately.
463
- - **Don't dispatch builders without a spec file.** The spec file forces exhaustive extraction and creates an auditable artifact. Skipping it means the builder gets whatever you can fit in a prompt from memory.
464
-
465
- ## Completion
466
-
467
- When done, report:
468
- - Total sections built
469
- - Total components created
470
- - Total spec files written (should match components)
471
- - Total assets downloaded (images, videos, SVGs, fonts)
472
- - Build status (`npm run build` result)
473
- - Visual QA results (any remaining discrepancies)
474
- - Any known gaps or limitations
475
-
476
- '''
1
+ # AUTO-GENERATED from .claude/skills/clone-website/SKILL.md
2
+ # Run `node scripts/sync-skills.mjs` to regenerate.
3
+
4
+ description = "Reverse-engineer and clone any website as a pixel-perfect replica"
5
+
6
+ [prompt]
7
+ text = '''
8
+
9
+ # Clone Website
10
+
11
+ You are about to reverse-engineer and rebuild **{{args}}** as pixel-perfect clones.
12
+
13
+ When multiple URLs are provided, process them independently and in parallel where possible, while keeping each site's extraction artifacts isolated in dedicated folders (for example, `docs/research/<hostname>/`).
14
+
15
+ 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.
16
+
17
+ ## Scope Defaults
18
+
19
+ The target is whatever page `{{args}}` resolves to. Clone exactly what's visible at that URL. Unless the user specifies otherwise, use these defaults:
20
+
21
+ - **Fidelity level:** Pixel-perfect — exact match in colors, spacing, typography, animations
22
+ - **In scope:** Visual layout and styling, component structure and interactions, responsive design, mock data for demo purposes
23
+ - **Out of scope:** Real backend / database, authentication, real-time features, SEO optimization, accessibility audit
24
+ - **Customization:** None — pure emulation
25
+
26
+ If the user provides additional instructions (specific fidelity level, customizations, extra context), honor those over the defaults.
27
+
28
+ ## Pre-Flight
29
+
30
+ 1. **Browser automation is required.** Check for available browser MCP tools (Chrome MCP, Playwright MCP, Browserbase MCP, Puppeteer MCP, etc.). Use whichever is available — if multiple exist, prefer Chrome MCP. If none are detected, ask the user which browser tool they have and how to connect it. This skill cannot work without browser automation.
31
+ 2. Parse `{{args}}` 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.
32
+ 3. Verify the base project builds: `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.
33
+ 4. Create the output directories if they don't exist: `docs/research/`, `docs/research/components/`, `docs/design-references/`, `scripts/`. For multiple clones, also prepare per-site folders like `docs/research/<hostname>/` and `docs/design-references/<hostname>/`.
34
+ 5. When working with multiple sites in one command, optionally confirm whether to run them in parallel (recommended, if resources allow) or sequentially to avoid overload.
35
+
36
+ ## Guiding Principles
37
+
38
+ These are the truths that separate a successful clone from a "close enough" mess. Internalize them — they should inform every decision you make.
39
+
40
+ ### 0. Visual crawl priority (images, SVGs, motion — first)
41
+
42
+ When you traverse the DOM and the Network panel, do **not** treat all nodes equally. Work in this **priority order** so the clone feels like the original, not a wireframe:
43
+
44
+ 1. **Images (raster + video stills)** — Enumerate `<img>`, `<picture>`, responsive `srcset`, `data-*` lazy URLs, **computed `background-image`** on the element and parents (including pseudo-elements), mask images, `<video poster>`, hero media. **Scrape:** download binary assets to `public/images/` (or `public/videos/`) with stable paths referenced in specs. **Create** a replacement PNG/WebP/SVG only when the asset is blocked (CORS, auth cookie, 403), ephemeral, or impossible to URL-fetch — use a high-DPI screenshot crop, traced artwork, or CSS gradient approximation, and mark `ASSET_SOURCE: generated` in the component spec with a short reason.
45
+ 2. **SVGs & iconography** — Inline `<svg>`, sprite `symbol` defs, **SVG used as masks/filters**, icon fonts (prefer path extraction). Convert to `@/components/icons.tsx` (or section-local components) with meaningful names. Prioritize crisp edges and correct `viewBox` over shrinking bundle size during emulation.
46
+ 3. **Motion & animation** CSS `@keyframes`, `animation`, `animation-timeline`, `transition`, `transform`, will-change hints; JS-driven motion (carousel timing, IntersectionObserver reveals); libraries (GSAP, Framer, Lottie JSON, Lenis). Capture **numbers** (ms, easing curves, stagger, scroll thresholds), not adjectives. Include **reduced-motion** behavior if present.
47
+
48
+ Only after the above are accounted for should you spend cycle time on minor text or non-visual refactors. A perfect grid with missing hero art and dead animation still fails the clone.
49
+
50
+ ### 1. Completeness Beats Speed
51
+
52
+ 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.
53
+
54
+ ### 2. Small Tasks, Perfect Results
55
+
56
+ When an agent gets "build the entire features section," it glosses over detailsit 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.
57
+
58
+ 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.
59
+
60
+ **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."
61
+
62
+ ### 3. Real Content, Real Assets
63
+
64
+ 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. The only time you generate content is when something is clearly server-generated and unique per session.
65
+
66
+ **Prioritize** (see §0): downloadable imagery and backgrounds first, then SVG/icon layers, then motion. If you must **fabricate** an asset, prefer screenshot-based exports or traced vectors tied to measured box sizesavoid unrelated stock art.
67
+
68
+ **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.
69
+
70
+ ### 4. Foundation First
71
+
72
+ 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.
73
+
74
+ ### 5. Extract How It Looks AND How It Behaves
75
+
76
+ 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.
77
+
78
+ 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`).
79
+
80
+ 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:
81
+ - A navbar that shrinks, changes background, or gains a shadow after scrolling past a threshold
82
+ - Elements that animate into view when they enter the viewport (fade-up, slide-in, stagger delays)
83
+ - Sections that snap into place on scroll (`scroll-snap-type`)
84
+ - Parallax layers that move at different rates than the scroll
85
+ - Hover states that animate (not just change — the transition duration and easing matter)
86
+ - Dropdowns, modals, accordions with enter/exit animations
87
+ - Scroll-driven progress indicators or opacity transitions
88
+ - Auto-playing carousels or cycling content
89
+ - Dark-to-light (or any theme) transitions between page sections
90
+ - **Tabbed/pill content that cycles** buttons that switch visible card sets with transitions
91
+ - **Scroll-driven tab/accordion switching** — sidebars where the active item auto-changes as content scrolls past (IntersectionObserver, NOT click handlers)
92
+ - **Smooth scroll libraries** (Lenis, Locomotive Scroll) check for `.lenis` class or scroll container wrappers
93
+
94
+ ### 6. Identify the Interaction Model Before Building
95
+
96
+ This 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?**
97
+
98
+ How to determine this:
99
+ 1. **Don't click first.** Scroll through the section slowly and observe if things change on their own as you scroll.
100
+ 2. If they do, it's scroll-driven. Extract the mechanism: `IntersectionObserver`, `scroll-snap`, `position: sticky`, `animation-timeline`, or JS scroll listeners.
101
+ 3. If nothing changes on scroll, THEN click/hover to test for click/hover-driven interactivity.
102
+ 4. Document the interaction model explicitly in the component spec: "INTERACTION MODEL: scroll-driven with IntersectionObserver" or "INTERACTION MODEL: click-to-switch with opacity transition."
103
+
104
+ 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.
105
+
106
+ ### 7. Extract Every State, Not Just the Default
107
+
108
+ 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.
109
+
110
+ For tabbed/stateful content:
111
+ - Click each tab/button via browser MCP
112
+ - Extract the content, images, and card data for EACH state
113
+ - Record which content belongs to which state
114
+ - Note the transition animation between states (opacity, slide, fade, etc.)
115
+
116
+ For scroll-dependent elements:
117
+ - Capture computed styles at scroll position 0 (initial state)
118
+ - Scroll past the trigger threshold and capture computed styles again (scrolled state)
119
+ - Diff the two to identify exactly which CSS properties change
120
+ - Record the transition CSS (duration, easing, properties)
121
+ - Record the exact trigger threshold (scroll position in px, or viewport intersection ratio)
122
+
123
+ ### 8. Spec Files Are the Source of Truth
124
+
125
+ Every component gets a specification file in `docs/research/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.
126
+
127
+ 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.
128
+
129
+ ### 9. Build Must Always Compile
130
+
131
+ 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.
132
+
133
+ ## Phase 1: Reconnaissance
134
+
135
+ Navigate to the target URL with browser MCP.
136
+
137
+ Follow **§0 (Visual crawl priority)** during the entire reconnaissance pass: images and backgrounds → SVGs/icons motion/animations — before spending time on secondary copy tweaks.
138
+
139
+ ### Screenshots
140
+ - Take **full-page screenshots** at desktop (1440px) and mobile (390px) viewports
141
+ - Save to `docs/design-references/` with descriptive names
142
+ - These are your master reference — builders will receive section-specific crops/screenshots later
143
+
144
+ ### Global Extraction
145
+ Extract these from the page before doing anything else:
146
+
147
+ **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. Configure them in `src/app/layout.tsx` using `next/font/google` or `next/font/local`.
148
+
149
+ **Colors** Extract the site's color palette from computed styles across the page. Update `src/app/globals.css` with the target's actual colors in the `:root` and `.dark` CSS variable blocks. Map them to shadcn's token names (background, foreground, primary, muted, etc.) where they fit. Add custom properties for colors that don't map to shadcn tokens.
150
+
151
+ **Favicons & Meta** — Download favicons, apple-touch-icons, OG images, webmanifest to `public/seo/`. Update `layout.tsx` metadata.
152
+
153
+ **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). Add these to `globals.css` and note any libraries that need to be installed.
154
+
155
+ ### Mandatory Interaction Sweep
156
+
157
+ 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.
158
+
159
+ **Scroll sweep:** Scroll the page slowly from top to bottom via browser MCP. At each section, pause and observe:
160
+ - Does the header change appearance? Record the scroll position where it triggers.
161
+ - Do elements animate into view? Record which ones and the animation type.
162
+ - Does a sidebar or tab indicator auto-switch as you scroll? Record the mechanism.
163
+ - Are there scroll-snap points? Record which containers.
164
+ - Is there a smooth scroll library active? Check for non-native scroll behavior.
165
+
166
+ **Click sweep:** Click every element that looks interactive:
167
+ - Every button, tab, pill, link, card
168
+ - Record what happens: does content change? Does a modal open? Does a dropdown appear?
169
+ - For tabs/pills: click EACH ONE and record the content that appears for each state
170
+
171
+ **Hover sweep:** Hover over every element that might have hover states:
172
+ - Buttons, cards, links, images, nav items
173
+ - Record what changes: color, scale, shadow, underline, opacity
174
+
175
+ **Responsive sweep:** Test at 3 viewport widths via browser MCP:
176
+ - Desktop: 1440px
177
+ - Tablet: 768px
178
+ - Mobile: 390px
179
+ - At each width, note which sections change layout (column → stack, sidebar disappears, etc.) and at approximately which breakpoint the change occurs.
180
+
181
+ Save all findings to `docs/research/BEHAVIORS.md`. This is your behavior bible reference it when writing every component spec.
182
+
183
+ ### Page Topology
184
+ Map out every distinct section of the page from top to bottom. Give each a working name. Document:
185
+ - Their visual order
186
+ - Which are fixed/sticky overlays vs. flow content
187
+ - The overall page layout (scroll container, column structure, z-index layers)
188
+ - Dependencies between sections (e.g., a floating nav that overlays everything)
189
+ - **The interaction model** of each section (static, click-driven, scroll-driven, time-driven)
190
+
191
+ Save this as `docs/research/PAGE_TOPOLOGY.md` — it becomes your assembly blueprint.
192
+
193
+ ## Phase 2: Foundation Build
194
+
195
+ This is sequential. Do it yourself (not delegated to an agent) since it touches many files:
196
+
197
+ 1. **Update fonts** in `layout.tsx` to match the target site's actual fonts
198
+ 2. **Update globals.css** with the target's color tokens, spacing values, keyframe animations, utility classes, and any **global scroll behaviors** (Lenis, smooth scroll CSS, scroll-snap on body)
199
+ 3. **Create TypeScript interfaces** in `src/types/` for the content structures you've observed
200
+ 4. **Extract SVG icons** — find all inline `<svg>` elements on the page, deduplicate them, and save as named React components in `src/components/icons.tsx`. Name them by visual function (e.g., `SearchIcon`, `ArrowRightIcon`, `LogoIcon`).
201
+ 5. **Download global assets** — write and run a Node.js script (`scripts/download-assets.mjs`) that downloads all images, videos, and other binary assets from the page to `public/`. Preserve meaningful directory structure.
202
+ 6. Verify: `npm run build` passes
203
+
204
+ ### Asset Discovery Script Pattern
205
+
206
+ Use browser MCP to enumerate all assets on the page:
207
+
208
+ ```javascript
209
+ // Run this via browser MCP to discover all assets
210
+ JSON.stringify({
211
+ images: [...document.querySelectorAll('img')].map(img => ({
212
+ src: img.src || img.currentSrc,
213
+ alt: img.alt,
214
+ width: img.naturalWidth,
215
+ height: img.naturalHeight,
216
+ // Include parent info to detect layered compositions
217
+ parentClasses: img.parentElement?.className,
218
+ siblings: img.parentElement ? [...img.parentElement.querySelectorAll('img')].length : 0,
219
+ position: getComputedStyle(img).position,
220
+ zIndex: getComputedStyle(img).zIndex
221
+ })),
222
+ videos: [...document.querySelectorAll('video')].map(v => ({
223
+ src: v.src || v.querySelector('source')?.src,
224
+ poster: v.poster,
225
+ autoplay: v.autoplay,
226
+ loop: v.loop,
227
+ muted: v.muted
228
+ })),
229
+ backgroundImages: [...document.querySelectorAll('*')].filter(el => {
230
+ const bg = getComputedStyle(el).backgroundImage;
231
+ return bg && bg !== 'none';
232
+ }).map(el => ({
233
+ url: getComputedStyle(el).backgroundImage,
234
+ element: el.tagName + '.' + el.className?.split(' ')[0]
235
+ })),
236
+ svgCount: document.querySelectorAll('svg').length,
237
+ fonts: [...new Set([...document.querySelectorAll('*')].slice(0, 200).map(el => getComputedStyle(el).fontFamily))],
238
+ favicons: [...document.querySelectorAll('link[rel*="icon"]')].map(l => ({ href: l.href, sizes: l.sizes?.toString() }))
239
+ });
240
+ ```
241
+
242
+ Then write a download script that fetches everything to `public/`. Use batched parallel downloads (4 at a time) with proper error handling.
243
+
244
+ ## Phase 3: Component Specification & Dispatch
245
+
246
+ 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**.
247
+
248
+ ### Step 1: Extract
249
+
250
+ For each section, use browser MCP to extract everything:
251
+
252
+ 1. **Screenshot** the section in isolation (scroll to it, screenshot the viewport). Save to `docs/design-references/`.
253
+
254
+ 2. **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:
255
+
256
+ ```javascript
257
+ // Per-component extraction — run via browser MCP
258
+ // Replace SELECTOR with the actual CSS selector for the component
259
+ (function(selector) {
260
+ const el = document.querySelector(selector);
261
+ if (!el) return JSON.stringify({ error: 'Element not found: ' + selector });
262
+ const props = [
263
+ 'fontSize','fontWeight','fontFamily','lineHeight','letterSpacing','color',
264
+ 'textTransform','textDecoration','backgroundColor','background',
265
+ 'padding','paddingTop','paddingRight','paddingBottom','paddingLeft',
266
+ 'margin','marginTop','marginRight','marginBottom','marginLeft',
267
+ 'width','height','maxWidth','minWidth','maxHeight','minHeight',
268
+ 'display','flexDirection','justifyContent','alignItems','gap',
269
+ 'gridTemplateColumns','gridTemplateRows',
270
+ 'borderRadius','border','borderTop','borderBottom','borderLeft','borderRight',
271
+ 'boxShadow','overflow','overflowX','overflowY',
272
+ 'position','top','right','bottom','left','zIndex',
273
+ 'opacity','transform','transition','cursor',
274
+ 'objectFit','objectPosition','mixBlendMode','filter','backdropFilter',
275
+ 'whiteSpace','textOverflow','WebkitLineClamp'
276
+ ];
277
+ function extractStyles(element) {
278
+ const cs = getComputedStyle(element);
279
+ const styles = {};
280
+ props.forEach(p => { const v = cs[p]; if (v && v !== 'none' && v !== 'normal' && v !== 'auto' && v !== '0px' && v !== 'rgba(0, 0, 0, 0)') styles[p] = v; });
281
+ return styles;
282
+ }
283
+ function walk(element, depth) {
284
+ if (depth > 4) return null;
285
+ const children = [...element.children];
286
+ return {
287
+ tag: element.tagName.toLowerCase(),
288
+ classes: element.className?.toString().split(' ').slice(0, 5).join(' '),
289
+ text: element.childNodes.length === 1 && element.childNodes[0].nodeType === 3 ? element.textContent.trim().slice(0, 200) : null,
290
+ styles: extractStyles(element),
291
+ images: element.tagName === 'IMG' ? { src: element.src, alt: element.alt, naturalWidth: element.naturalWidth, naturalHeight: element.naturalHeight } : null,
292
+ childCount: children.length,
293
+ children: children.slice(0, 20).map(c => walk(c, depth + 1)).filter(Boolean)
294
+ };
295
+ }
296
+ return JSON.stringify(walk(el, 0), null, 2);
297
+ })('SELECTOR');
298
+ ```
299
+
300
+ 3. **Extract multi-state styles** — for any element with multiple states (scroll-triggered, hover, active tab), capture BOTH states:
301
+
302
+ ```javascript
303
+ // State A: capture styles at current state (e.g., scroll position 0)
304
+ // Then trigger the state change (scroll, click, hover via browser MCP)
305
+ // State B: re-run the extraction script on the same element
306
+ // The diff between A and B IS the behavior specification
307
+ ```
308
+
309
+ Record the diff explicitly: "Property X changes from VALUE_A to VALUE_B, triggered by TRIGGER, with transition: TRANSITION_CSS."
310
+
311
+ 4. **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**.
312
+
313
+ 5. **Identify assets** this section uses — which downloaded images/videos from `public/`, which icon components from `icons.tsx`. Check for **layered images** (multiple `<img>` or background-images stacked in the same container).
314
+
315
+ 6. **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).
316
+
317
+ ### Step 2: Write the Component Spec File
318
+
319
+ For each section (or sub-component, if you're breaking it up), create a spec file in `docs/research/components/`. This is NOT optional — every builder must have a corresponding spec file.
320
+
321
+ **File path:** `docs/research/components/<component-name>.spec.md`
322
+
323
+ **Template:**
324
+
325
+ ```markdown
326
+ # <ComponentName> Specification
327
+
328
+ ## Overview
329
+ - **Target file:** `src/components/<ComponentName>.tsx`
330
+ - **Screenshot:** `docs/design-references/<screenshot-name>.png`
331
+ - **Interaction model:** <static | click-driven | scroll-driven | time-driven>
332
+
333
+ ## DOM Structure
334
+ <Describe the element hierarchy — what contains what>
335
+
336
+ ## Computed Styles (exact values from getComputedStyle)
337
+
338
+ ### Container
339
+ - display: ...
340
+ - padding: ...
341
+ - maxWidth: ...
342
+ - (every relevant property with exact values)
343
+
344
+ ### <Child element 1>
345
+ - fontSize: ...
346
+ - color: ...
347
+ - (every relevant property)
348
+
349
+ ### <Child element N>
350
+ ...
351
+
352
+ ## States & Behaviors
353
+
354
+ ### <Behavior name, e.g., "Scroll-triggered floating mode">
355
+ - **Trigger:** <exact mechanism — scroll position 50px, IntersectionObserver rootMargin "-30% 0px", click on .tab-button, hover>
356
+ - **State A (before):** maxWidth: 100vw, boxShadow: none, borderRadius: 0
357
+ - **State B (after):** maxWidth: 1200px, boxShadow: 0 4px 20px rgba(0,0,0,0.1), borderRadius: 16px
358
+ - **Transition:** transition: all 0.3s ease
359
+ - **Implementation approach:** <CSS transition + scroll listener | IntersectionObserver | CSS animation-timeline | etc.>
360
+
361
+ ### Hover states
362
+ - **<Element>:** <property>: <before> → <after>, transition: <value>
363
+
364
+ ## Per-State Content (if applicable)
365
+
366
+ ### State: "Featured"
367
+ - Title: "..."
368
+ - Subtitle: "..."
369
+ - Cards: [{ title, description, image, link }, ...]
370
+
371
+ ### State: "Productivity"
372
+ - Title: "..."
373
+ - Cards: [...]
374
+
375
+ ## Assets
376
+ - Background image: `public/images/<file>.webp`
377
+ - Overlay image: `public/images/<file>.png`
378
+ - Icons used: <ArrowIcon>, <SearchIcon> from icons.tsx
379
+
380
+ ## Text Content (verbatim)
381
+ <All text content, copy-pasted from the live site>
382
+
383
+ ## Responsive Behavior
384
+ - **Desktop (1440px):** <layout description>
385
+ - **Tablet (768px):** <what changes — e.g., "maintains 2-column, gap reduces to 16px">
386
+ - **Mobile (390px):** <what changes — e.g., "stacks to single column, images full-width">
387
+ - **Breakpoint:** layout switches at ~<N>px
388
+ ```
389
+
390
+ 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.
391
+
392
+ ### Step 3: Dispatch Builders
393
+
394
+ Based on complexity, dispatch builder agent(s) in worktree(s):
395
+
396
+ **Simple section** (1-2 sub-components): One builder agent gets the entire section.
397
+
398
+ **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.
399
+
400
+ **What every builder agent receives:**
401
+ - The full contents of its component spec file (inline in the prompt don't say "go read the spec file")
402
+ - Path to the section screenshot in `docs/design-references/`
403
+ - Which shared components to import (`icons.tsx`, `cn()`, shadcn primitives)
404
+ - The target file path (e.g., `src/components/HeroSection.tsx`)
405
+ - Instruction to verify with `npx tsc --noEmit` before finishing
406
+ - For responsive behavior: the specific breakpoint values and what changes
407
+
408
+ **Don'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.
409
+
410
+ ### Step 4: Merge
411
+
412
+ As builder agents complete their work:
413
+ - Merge their worktree branches into main
414
+ - You have full context on what each agent built, so resolve any conflicts intelligently
415
+ - After each merge, verify the build still passes: `npm run build`
416
+ - If a merge introduces type errors, fix them immediately
417
+
418
+ The extract spec dispatch merge cycle continues until all sections are built.
419
+
420
+ ## Phase 4: Page Assembly
421
+
422
+ After all sections are built and merged, wire everything together in `src/app/page.tsx`:
423
+
424
+ - Import all section components
425
+ - Implement the page-level layout from your topology doc (scroll containers, column structures, sticky positioning, z-index layering)
426
+ - Connect real content to component props
427
+ - Implement page-level behaviors: scroll snap, scroll-driven animations, dark-to-light transitions, intersection observers, smooth scroll (Lenis etc.)
428
+ - Verify: `npm run build` passes clean
429
+
430
+ ## Phase 5: Visual QA Diff
431
+
432
+ After assembly, do NOT declare the clone complete. Take side-by-side comparison screenshots:
433
+
434
+ 1. Open the original site and your clone side-by-side (or take screenshots at the same viewport widths)
435
+ 2. Compare section by section, top to bottom, at desktop (1440px)
436
+ 3. Compare again at mobile (390px)
437
+ 4. For each discrepancy found:
438
+ - Check the component spec file was the value extracted correctly?
439
+ - If the spec was wrong: re-extract from browser MCP, update the spec, fix the component
440
+ - If the spec was right but the builder got it wrong: fix the component to match the spec
441
+ 5. Test all interactive behaviors: scroll through the page, click every button/tab, hover over interactive elements
442
+ 6. Verify smooth scroll feels right, header transitions work, tab switching works, animations play
443
+
444
+ Only after this visual QA pass is the clone complete.
445
+
446
+ ## Pre-Dispatch Checklist
447
+
448
+ Before dispatching ANY builder agent, verify you can check every box. If you can't, go back and extract more.
449
+
450
+ - [ ] Spec file written to `docs/research/components/<name>.spec.md` with ALL sections filled
451
+ - [ ] Every CSS value in the spec is from `getComputedStyle()`, not estimated
452
+ - [ ] Interaction model is identified and documented (static / click / scroll / time)
453
+ - [ ] For stateful components: every state's content and styles are captured
454
+ - [ ] For scroll-driven components: trigger threshold, before/after styles, and transition are recorded
455
+ - [ ] For hover states: before/after values and transition timing are recorded
456
+ - [ ] All images in the section are identified (including overlays and layered compositions)
457
+ - [ ] Responsive behavior is documented for at least desktop and mobile
458
+ - [ ] Text content is verbatim from the site, not paraphrased
459
+ - [ ] The builder prompt is under ~150 lines of spec; if over, the section needs to be split
460
+
461
+ ## What NOT to Do
462
+
463
+ These are lessons from previous failed clones each one cost hours of rework:
464
+
465
+ - **Don't build click-based tabs when the original is scroll-driven (or vice versa).** Determine the interaction model FIRST by scrolling before clicking. This is the #1 most expensive mistake — it requires a complete rewrite, not a CSS fix.
466
+ - **Don't extract only the default state.** If there are tabs showing "Featured" on load, click Productivity, Creative, Lifestyle and extract each one's cards/content. If the header changes on scroll, capture styles at position 0 AND position 100+.
467
+ - **Don't miss overlay/layered images.** A background watercolor + foreground UI mockup = 2 images. Check every container's DOM tree for multiple `<img>` elements and positioned overlays.
468
+ - **Don't build mockup components for content that's actually videos/animations.** Check if a section uses `<video>`, Lottie, or canvas before building elaborate HTML mockups of what the video shows.
469
+ - **Don't approximate CSS classes.** "It looks like `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.
470
+ - **Don't build everything in one monolithic commit.** The whole point of this pipeline is incremental progress with verified builds at each step.
471
+ - **Don't reference docs from builder prompts.** Each builder gets the CSS spec inline in its prompt — never "see DESIGN_TOKENS.md for colors." The builder should have zero need to read external docs.
472
+ - **Don't skip asset extraction.** Without real images, videos, and fonts, the clone will always look fake regardless of how perfect the CSS is.
473
+ - **Don't give a builder agent too much scope.** If you're writing a builder prompt and it's getting long because the section is complex, that's a signal to break it into smaller tasks.
474
+ - **Don't bundle unrelated sections into one agent.** A CTA section and a footer are different components with different designs — don't hand them both to one agent and hope for the best.
475
+ - **Don't skip responsive extraction.** If you only inspect at desktop width, the clone will break at tablet and mobile. Test at 1440, 768, and 390 during extraction.
476
+ - **Don't forget smooth scroll libraries.** Check for Lenis (`.lenis` class), Locomotive Scroll, or similar. Default browser scrolling feels noticeably different and the user will spot it immediately.
477
+ - **Don't dispatch builders without a spec file.** The spec file forces exhaustive extraction and creates an auditable artifact. Skipping it means the builder gets whatever you can fit in a prompt from memory.
478
+
479
+ ## Completion
480
+
481
+ When done, report:
482
+ - Total sections built
483
+ - Total components created
484
+ - Total spec files written (should match components)
485
+ - Total assets downloaded (images, videos, SVGs, fonts)
486
+ - Build status (`npm run build` result)
487
+ - Visual QA results (any remaining discrepancies)
488
+ - Any known gaps or limitations
489
+
490
+ '''