launchframe 0.4.2 → 0.4.4

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,42 +1,626 @@
1
- ---
2
- name: launchframe
3
- description: Scaffold a Next.js app with npx launchframe@latest into the current folderno CLI arguments required. Invoked as /launchframe.
4
- argument-hint: ""
5
- user-invocable: true
6
- ---
7
-
8
- # Launchframe
9
-
10
- Help the user create a **new** Launchframe project. The CLI is **parameterless**:
11
-
12
- ```bash
13
- npx launchframe@latest
14
- ```
15
-
16
- It unpacks the full template into the **current working directory** (the folder root where the user runs the command). They should `mkdir`, `cd` into an **empty** folder first.
17
-
18
- ## What you do
19
-
20
- 1. Ensure the user has an **empty** directory (no existing `package.json`, `src/`, or `next.config.ts` there). If the workspace is already a Launchframe/Next project, they may only need `/clone-website` instead — clarify.
21
-
22
- 2. Run exactly:
23
-
24
- ```bash
25
- npx launchframe@latest
26
- ```
27
-
28
- Optional: `LAUNCHFRAME_SOURCE_URL` and `LAUNCHFRAME_SAAS_IDEA` environment variables in the same shell if they want values pre-filled without editing files later.
29
-
30
- 3. **Never** run this with the output target **inside** the `launchframe` package directory (the npm-installed template). If the open folder is this monorepo/template, have them `mkdir ../my-app && cd ../my-app` (sibling path), then run `npx launchframe@latest` there.
31
-
32
- 4. Optional flags (same as CLI): `--dir <path>` to scaffold into another folder instead of cwd, `--skip-install` to skip `npm install`.
33
-
34
- 5. After it finishes: they should **`npm run dev`** from **that same folder** (no extra `cd` if they scaffolded into cwd). Then they edit **`src/lib/launchframe-config.ts`** for reference URL and SaaS idea, and run **`/clone-website`** with that URL.
35
-
36
- ## If $ARGUMENTS are present
37
-
38
- The user may still paste a URL or idea in chat — **do not** require them for the CLI. Put any extra context into **`src/lib/launchframe-config.ts`** or `launchframe.context.json` for them after scaffold.
39
-
40
- ## Fallback (local dev only)
41
-
42
- From a checkout of this repo: `node bin/launchframe.mjs` with the same empty-folder rules (optionally `--dir` outside the package root).
1
+ ---
2
+ name: launchframe
3
+ description: Pixel-perfect reverse-engineer of a reference URL into this repo, plus SaaS landing copythe only clone slash command for this template. Invoked as /launchframe.
4
+ argument-hint: '<url> "<saas-idea>"'
5
+ user-invocable: true
6
+ ---
7
+
8
+ # Launchframe
9
+
10
+ **`/launchframe`** is the **only** slash command for reverse-engineering a live site into this codebase. Parse **$ARGUMENTS**:
11
+
12
+ 1. **Reference URL(s)** — Every `http://` or `https://` token (clone each site; use `docs/research/<hostname>/` when there are multiple).
13
+ 2. **SaaS idea** — All remaining text that is not a URL (often quoted): product pitch for hero and key marketing lines.
14
+
15
+ You are a **foreman walking the job site** — write specs per section, dispatch builders in parallel where possible, merge, QA. Not a shallow inspect-then-guess flow.
16
+
17
+ ## Step 0 — Persist Launchframe inputs
18
+
19
+ Before reconnaissance, write or update:
20
+
21
+ - `src/lib/launchframe-config.ts` — `LAUNCHFRAME_SOURCE_URL` (primary URL, usually first), `LAUNCHFRAME_SAAS_IDEA`
22
+ - `launchframe.context.json`
23
+ - `docs/research/LAUNCHFRAME.md` — URLs and SaaS idea
24
+
25
+ ## SaaS copy overlay (Phase 4 assembly and final polish)
26
+
27
+ After structure and styles match the reference, apply the **SaaS idea** to hero, headings, and primary CTAs where the reference uses interchangeable marketing copy, **without** changing layout grids, spacing, or motion from extracted specs. **Brand identity** (below) must be **original** for anything you ship as the user’s product — never pass off the reference company’s trademarks or distinctive marks.
28
+
29
+ **Precedence:** For those surfaces (hero, main headings, primary CTAs), **final ship copy comes from the SaaS idea**, not the reference — still capture reference strings in research/specs if useful for QA diffs. Everywhere else, keep **verbatim** reference text unless the user overrides.
30
+
31
+ ---
32
+
33
+ ## Scope Defaults
34
+
35
+ The target page(s) are the URL(s) you parsed in Pre-Flight. Clone exactly what's visible at each URL. Unless the user specifies otherwise, use these defaults:
36
+
37
+ - **Fidelity level:** Pixel-perfect **layout, spacing, typography scale, and motion** (durations, easings, keyframes, triggers) matched to the reference. **Colors** match where you are emulating neutral/UI chrome from the reference; where **Brand identity** applies, use the **new palette** and assets while keeping the same CSS structure (fills land on different tokens). **Animations** stay reference-faithful unless the user opts out.
38
+ - **In scope:** Visual layout and styling, component structure and interactions, responsive design, mock data for demo purposes
39
+ - **Out of scope:** Real backend / database, authentication, real-time features, SEO optimization, accessibility audit
40
+ - **Customization:** Structure and visuals — pure emulation of the reference. **Marketing copy** — apply the parsed **SaaS idea** where hero/headlines/CTAs are interchangeable (see “SaaS copy overlay” above); do not invent a different product than the user’s idea.
41
+ - **Brand identity:** The reference is a **pattern** for layout, motion, and UI craft — **not** permission to ship their brand. Unless the user **explicitly** asks for a faithful copy of the reference brand (e.g. licensed work, clearly labeled internal mock, private design audit), **invent an original brand** aligned with the SaaS idea: product name, wordmark or simple logomark (SVG or styled text) sized to the same logo slot, favicon / app icon, OG imagery, and a cohesive palette. Do **not** reuse their trademarked logo paths, mascot art, or distinctive illustrative brand assets; use originals or functional UI icons instead. Hero or lifestyle images that center the reference brand should be replaced with **original** imagery or neutral compositions that keep the **same layout rhythm**. **Keep** reference-faithful neutrals where they are clearly **non-brand** UI (borders, subtle grays, default body text color roles) unless they are unmistakably part of their distinctive palette. Note in `docs/research/LAUNCHFRAME.md` which marks and assets are **original brand** versus **layout-only** extraction.
42
+
43
+ If the user provides additional instructions (specific fidelity level, customizations, extra context), honor those over the defaults.
44
+
45
+ ## Pre-Flight
46
+
47
+ 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 DevTools MCP** for inspection: it maps to the same engine the user sees and preserves **computed `animation` / `transition` / scroll-driven** values accurately. If none are detected, ask the user which browser tool they have and how to connect it. This skill cannot work without browser automation. **Motion parity:** every pass (reconnaissance, per-section extract, QA) must treat **motion as first-class** — same **durations, delays, easings (`cubic-bezier` / steps), iteration counts, fill modes, directions, keyframe percentages, and scroll/view-timeline bindings** as the live site, not “similar” motion.
48
+ 2. **Parse arguments** — extract every `http://` / `https://` URL token (there may be several). **SaaS idea** = the remaining non-URL text (trim outer quotes). Normalize and validate each URL; if any are invalid, or the SaaS idea is missing, ask the user once. For each valid URL, verify it is accessible via your browser MCP tool.
49
+ 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.
50
+ 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>/`.
51
+ 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.
52
+
53
+ ## Guiding Principles
54
+
55
+ These are the truths that separate a successful clone from a "close enough" mess. Internalize them — they should inform every decision you make.
56
+
57
+ ### 0. Visual crawl priority (images, SVGs, motion — first)
58
+
59
+ 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:
60
+
61
+ 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.
62
+ 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.
63
+ 3. **Motion & animation** — CSS `@keyframes`, `animation`, `animation-timeline` / `view-timeline` / `animation-range`, `transition`, `transform`, `transform-origin`, will-change; JS-driven motion (carousel timing, IntersectionObserver reveals); libraries (GSAP, Framer, Lottie JSON, Lenis). Capture **numbers** (ms, `cubic-bezier()`, `steps()`, stagger, scroll thresholds, **named keyframe blocks**), not adjectives — paste **verbatim** `cssText` for relevant `@keyframes` into specs when obtainable. Include **reduced-motion** (`matchMedia('(prefers-reduced-motion: reduce)'))` behavior if present.
64
+
65
+ 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.
66
+
67
+ ### 1. Completeness Beats Speed
68
+
69
+ 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.
70
+
71
+ ### 2. Small Tasks, Perfect Results
72
+
73
+ 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.
74
+
75
+ 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.
76
+
77
+ **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."
78
+
79
+ ### 3. Real Content, Real Assets
80
+
81
+ 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.
82
+
83
+ **Marketing surfaces** (hero, primary headings, main CTAs) follow the **SaaS copy overlay** and **Brand identity** rules — capture reference copy for audit, but **ship** the user’s idea there.
84
+
85
+ **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 sizes — avoid unrelated stock art.
86
+
87
+ **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.
88
+
89
+ ### 4. Foundation First
90
+
91
+ 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.
92
+
93
+ ### 5. Extract How It Looks AND How It Behaves
94
+
95
+ 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.
96
+
97
+ 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`).
98
+
99
+ 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:
100
+ - A navbar that shrinks, changes background, or gains a shadow after scrolling past a threshold
101
+ - Elements that animate into view when they enter the viewport (fade-up, slide-in, stagger delays)
102
+ - Sections that snap into place on scroll (`scroll-snap-type`)
103
+ - Parallax layers that move at different rates than the scroll
104
+ - Hover states that animate (not just change — the transition duration and easing matter)
105
+ - Dropdowns, modals, accordions with enter/exit animations
106
+ - Scroll-driven progress indicators or opacity transitions
107
+ - Auto-playing carousels or cycling content
108
+ - Dark-to-light (or any theme) transitions between page sections
109
+ - **Tabbed/pill content that cycles** — buttons that switch visible card sets with transitions
110
+ - **Scroll-driven tab/accordion switching** — sidebars where the active item auto-changes as content scrolls past (IntersectionObserver, NOT click handlers)
111
+ - **Smooth scroll libraries** (Lenis, Locomotive Scroll) — check for `.lenis` class or scroll container wrappers
112
+
113
+ ### 6. Identify the Interaction Model Before Building
114
+
115
+ 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?**
116
+
117
+ How to determine this:
118
+ 1. **Don't click first.** Scroll through the section slowly and observe if things change on their own as you scroll.
119
+ 2. If they do, it's scroll-driven. Extract the mechanism: `IntersectionObserver`, `scroll-snap`, `position: sticky`, `animation-timeline`, or JS scroll listeners.
120
+ 3. If nothing changes on scroll, THEN click/hover to test for click/hover-driven interactivity.
121
+ 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."
122
+
123
+ 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.
124
+
125
+ ### 7. Extract Every State, Not Just the Default
126
+
127
+ 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.
128
+
129
+ For tabbed/stateful content:
130
+ - Click each tab/button via browser MCP
131
+ - Extract the content, images, and card data for EACH state
132
+ - Record which content belongs to which state
133
+ - Note the transition animation between states (opacity, slide, fade, etc.)
134
+
135
+ For scroll-dependent elements:
136
+ - Capture computed styles at scroll position 0 (initial state)
137
+ - Scroll past the trigger threshold and capture computed styles again (scrolled state)
138
+ - Diff the two to identify exactly which CSS properties change
139
+ - Record the transition CSS (duration, easing, properties)
140
+ - Record the exact trigger threshold (scroll position in px, or viewport intersection ratio)
141
+
142
+ ### 8. Spec Files Are the Source of Truth
143
+
144
+ 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.
145
+
146
+ 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.
147
+
148
+ ### 9. Build Must Always Compile
149
+
150
+ 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.
151
+
152
+ ## Phase 1: Reconnaissance
153
+
154
+ Navigate to the target URL with browser MCP.
155
+
156
+ Follow **§0 (Visual crawl priority)** during the entire reconnaissance pass: images and backgrounds → SVGs/icons → motion/animations — before spending time on secondary copy tweaks.
157
+
158
+ ### Screenshots
159
+ - Take **full-page screenshots** at desktop (1440px) and mobile (390px) viewports
160
+ - Save to `docs/design-references/` with descriptive names
161
+ - These are your master reference — builders will receive section-specific crops/screenshots later
162
+
163
+ ### Global Extraction
164
+ Extract these from the page before doing anything else:
165
+
166
+ **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`.
167
+
168
+ **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.
169
+
170
+ **Favicons & Meta** — Download favicons, apple-touch-icons, OG images, webmanifest to `public/seo/`. Update `layout.tsx` metadata.
171
+
172
+ **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.
173
+
174
+ ### Mandatory Interaction Sweep
175
+
176
+ 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.
177
+
178
+ **Scroll sweep:** Scroll the page slowly from top to bottom via browser MCP. At each section, pause and observe:
179
+ - Does the header change appearance? Record the scroll position where it triggers.
180
+ - Do elements animate into view? Record which ones and the animation type.
181
+ - Does a sidebar or tab indicator auto-switch as you scroll? Record the mechanism.
182
+ - Are there scroll-snap points? Record which containers.
183
+ - Is there a smooth scroll library active? Check for non-native scroll behavior.
184
+
185
+ **Click sweep:** Click every element that looks interactive:
186
+ - Every button, tab, pill, link, card
187
+ - Record what happens: does content change? Does a modal open? Does a dropdown appear?
188
+ - For tabs/pills: click EACH ONE and record the content that appears for each state
189
+
190
+ **Hover sweep:** Hover over every element that might have hover states:
191
+ - Buttons, cards, links, images, nav items
192
+ - Record what changes: color, scale, shadow, underline, opacity
193
+
194
+ **Responsive sweep:** Test at 3 viewport widths via browser MCP:
195
+ - Desktop: 1440px
196
+ - Tablet: 768px
197
+ - Mobile: 390px
198
+ - At each width, note which sections change layout (column → stack, sidebar disappears, etc.) and at approximately which breakpoint the change occurs.
199
+
200
+ Re-check **all three widths** again in **Phase 5: Visual QA Diff** so tablet regressions are not skipped.
201
+
202
+ Save all findings to `docs/research/BEHAVIORS.md`. This is your behavior bible — reference it when writing every component spec.
203
+
204
+ ### Chrome MCP: precise motion & animation extraction
205
+
206
+ Use **evaluate script** (or equivalent) in Chrome MCP **during** the scroll/click/hover sweeps so you capture **live computed values**, not guesses from DevTools screenshots alone.
207
+
208
+ **Rules:**
209
+
210
+ - **No hand-waving** — if the reference uses `0.45s cubic-bezier(0.4, 0, 0.2, 1)`, the spec and implementation use that exact string (or Tailwind utilities **only** when the **resolved computed** animation/transition longhands match — class names alone are not proof).
211
+ - **`@keyframes` source of truth** — for each animated element, record `getComputedStyle(el).animationName` and resolve the **full `@keyframes` rule** from stylesheets when allowed. Many sites inline CSS or use same-origin sheets: iterate `document.styleSheets` / `cssRules` inside `try/catch`; for **cross-origin** sheets that throw on `cssRules`, copy the rule from the **Network** response or **Sources** panel in Chrome and paste into `docs/research/MOTION.md` / the component spec. Never substitute a different easing or keyframe shape “because it looks close.”
212
+ - **Scroll-driven animations** — for `animation-timeline: view()` / named timelines, capture **`view-timeline` / `scroll-timeline` on ancestors**, `animation-range`, `scroll-padding` / snap containers, and **which scroll container** is the timeline root (often `html`, sometimes a nested `overflow-y: auto` div). **`getComputedStyle` support varies** for scroll-animation longhands; also read **`cs.getPropertyValue('view-timeline-name')`**, **`scroll-timeline-name`**, **`animation-timeline`**, etc., when camelCase mirrors are missing in the engine you’re using.
213
+ - **Before/after pairs** — for scroll- or hover-driven motion, capture computed `transform`, `opacity`, and longhand `animation-*` / `transition-*` **in both states** (see §7) and the **exact trigger** (px, ratio, or event).
214
+ - **Libraries** — if Lenis/GSAP/Framer is present, document **version/hooks** from **script `src` URLs** (path often includes version), `//# sourceMappingURL` / comment banners in the bundle if visible, global identifiers on `window` when safe to read, **npm lockfile** only if this repo vendors that script, and **class/DOM hooks** (e.g. `.lenis`). Sample **computed style** at rest vs. mid-animation after interactions.
215
+ - **Deliverable** — maintain `docs/research/MOTION.md`: page-level keyframes inventory, global scroll/smooth-scroll setup, and per-section pointers into component specs. Large pages may scope the audit script to a **section root selector** to avoid noise.
216
+
217
+ **Motion audit script** (run via Chrome MCP; optional `rootSelector` limits to a subtree):
218
+
219
+ ```javascript
220
+ (function motionAudit(rootSelector) {
221
+ const root = rootSelector ? document.querySelector(rootSelector) : document.body;
222
+ if (!root) return JSON.stringify({ error: 'root not found: ' + rootSelector });
223
+
224
+ function safeRules(sheet) {
225
+ try {
226
+ return [...sheet.cssRules];
227
+ } catch {
228
+ return [];
229
+ }
230
+ }
231
+
232
+ const walkKeyframes = (rules, out) => {
233
+ for (const rule of rules) {
234
+ if (rule.type === CSSRule.KEYFRAMES_RULE) {
235
+ out.push({ name: rule.name, cssText: rule.cssText });
236
+ } else if (rule.type === CSSRule.MEDIA_RULE && rule.cssRules) {
237
+ walkKeyframes(rule.cssRules, out);
238
+ }
239
+ }
240
+ };
241
+
242
+ const keyframes = [];
243
+ for (const sheet of document.styleSheets) {
244
+ walkKeyframes(safeRules(sheet), keyframes);
245
+ }
246
+
247
+ const animated = [];
248
+ // Include `root` — querySelectorAll('*') misses animations on the section container itself
249
+ const scope = [root, ...root.querySelectorAll('*')];
250
+ for (const el of scope) {
251
+ const cs = getComputedStyle(el);
252
+ const animName = cs.animationName;
253
+ const hasAnim = animName && animName !== 'none';
254
+ const transDurs = (cs.transitionDuration || '')
255
+ .split(',')
256
+ .map((s) => s.trim())
257
+ .filter(Boolean);
258
+ const hasTrans =
259
+ cs.transitionProperty &&
260
+ cs.transitionProperty !== 'none' &&
261
+ transDurs.some((d) => d !== '0s' && d !== '0ms');
262
+ if (!hasAnim && !hasTrans) continue;
263
+
264
+ animated.push({
265
+ hint: el.tagName.toLowerCase() + (el.className
266
+ ? '.' + String(el.className).trim().split(/\s+/).slice(0, 4).join('.')
267
+ : ''),
268
+ animation: cs.animation,
269
+ animationName: cs.animationName,
270
+ animationDuration: cs.animationDuration,
271
+ animationTimingFunction: cs.animationTimingFunction,
272
+ animationDelay: cs.animationDelay,
273
+ animationIterationCount: cs.animationIterationCount,
274
+ animationDirection: cs.animationDirection,
275
+ animationFillMode: cs.animationFillMode,
276
+ animationPlayState: cs.animationPlayState,
277
+ animationTimeline: cs.animationTimeline,
278
+ animationRange: cs.animationRange,
279
+ transition: cs.transition,
280
+ transitionProperty: cs.transitionProperty,
281
+ transitionDuration: cs.transitionDuration,
282
+ transitionTimingFunction: cs.transitionTimingFunction,
283
+ transitionDelay: cs.transitionDelay,
284
+ transform: cs.transform,
285
+ transformOrigin: cs.transformOrigin,
286
+ opacity: cs.opacity,
287
+ willChange: cs.willChange,
288
+ viewTimelineName: cs.viewTimelineName,
289
+ scrollTimelineName: cs.scrollTimelineName,
290
+ viewTimelineNameRaw: cs.getPropertyValue('view-timeline-name'),
291
+ scrollTimelineNameRaw: cs.getPropertyValue('scroll-timeline-name')
292
+ });
293
+ }
294
+
295
+ return JSON.stringify(
296
+ {
297
+ prefersReducedMotion: window.matchMedia('(prefers-reduced-motion: reduce)').matches,
298
+ keyframes,
299
+ animatedElements: animated
300
+ },
301
+ null,
302
+ 2
303
+ );
304
+ })(''); // Pass section selector string, e.g. 'section.hero', instead of ''
305
+ ```
306
+
307
+ ### Page Topology
308
+ Map out every distinct section of the page from top to bottom. Give each a working name. Document:
309
+ - Their visual order
310
+ - Which are fixed/sticky overlays vs. flow content
311
+ - The overall page layout (scroll container, column structure, z-index layers)
312
+ - Dependencies between sections (e.g., a floating nav that overlays everything)
313
+ - **The interaction model** of each section (static, click-driven, scroll-driven, time-driven)
314
+
315
+ Save this as `docs/research/PAGE_TOPOLOGY.md` — it becomes your assembly blueprint.
316
+
317
+ ## Phase 2: Foundation Build
318
+
319
+ This is sequential. Do it yourself (not delegated to an agent) since it touches many files:
320
+
321
+ 1. **Update fonts** in `layout.tsx` to match the target site's actual fonts
322
+ 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)
323
+ 3. **Create TypeScript interfaces** in `src/types/` for the content structures you've observed
324
+ 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`).
325
+ 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.
326
+ 6. Verify: `npm run build` passes
327
+
328
+ ### Asset Discovery Script Pattern
329
+
330
+ Use browser MCP to enumerate all assets on the page:
331
+
332
+ ```javascript
333
+ // Run this via browser MCP to discover all assets
334
+ JSON.stringify({
335
+ images: [...document.querySelectorAll('img')].map(img => ({
336
+ src: img.src || img.currentSrc,
337
+ alt: img.alt,
338
+ width: img.naturalWidth,
339
+ height: img.naturalHeight,
340
+ // Include parent info to detect layered compositions
341
+ parentClasses: img.parentElement?.className,
342
+ siblings: img.parentElement ? [...img.parentElement.querySelectorAll('img')].length : 0,
343
+ position: getComputedStyle(img).position,
344
+ zIndex: getComputedStyle(img).zIndex
345
+ })),
346
+ videos: [...document.querySelectorAll('video')].map(v => ({
347
+ src: v.src || v.querySelector('source')?.src,
348
+ poster: v.poster,
349
+ autoplay: v.autoplay,
350
+ loop: v.loop,
351
+ muted: v.muted
352
+ })),
353
+ backgroundImages: [...document.querySelectorAll('*')].filter(el => {
354
+ const bg = getComputedStyle(el).backgroundImage;
355
+ return bg && bg !== 'none';
356
+ }).map(el => ({
357
+ url: getComputedStyle(el).backgroundImage,
358
+ element: el.tagName + '.' + el.className?.split(' ')[0]
359
+ })),
360
+ svgCount: document.querySelectorAll('svg').length,
361
+ fonts: [...new Set([...document.querySelectorAll('*')].slice(0, 200).map(el => getComputedStyle(el).fontFamily))],
362
+ favicons: [...document.querySelectorAll('link[rel*="icon"]')].map(l => ({ href: l.href, sizes: l.sizes?.toString() }))
363
+ });
364
+ ```
365
+
366
+ Then write a download script that fetches everything to `public/`. Use batched parallel downloads (4 at a time) with proper error handling.
367
+
368
+ ## Phase 3: Component Specification & Dispatch
369
+
370
+ 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**.
371
+
372
+ ### Step 1: Extract
373
+
374
+ For each section, use browser MCP to extract everything:
375
+
376
+ 1. **Screenshot** the section in isolation (scroll to it, screenshot the viewport). Save to `docs/design-references/`.
377
+
378
+ 2. **Extract CSS** for every element in the section. Use the extraction script below — don't hand-measure individual properties. Run it **once per spec scope**: usually the **section wrapper** selector (one subtree). For very large sections, run again on **inner selectors** (e.g. each card type) — the `depth` / `children.slice(0, 20)` limits are **deliberately capped** for MCP payload size; raise them or narrow `SELECTOR` when the spec is incomplete.
379
+
380
+ ```javascript
381
+ // Per-component extraction — run via browser MCP
382
+ // Replace SELECTOR with the actual CSS selector for the component
383
+ (function(selector) {
384
+ const el = document.querySelector(selector);
385
+ if (!el) return JSON.stringify({ error: 'Element not found: ' + selector });
386
+ const props = [
387
+ 'fontSize','fontWeight','fontFamily','lineHeight','letterSpacing','color',
388
+ 'textTransform','textDecoration','backgroundColor','background',
389
+ 'padding','paddingTop','paddingRight','paddingBottom','paddingLeft',
390
+ 'margin','marginTop','marginRight','marginBottom','marginLeft',
391
+ 'width','height','maxWidth','minWidth','maxHeight','minHeight',
392
+ 'display','flexDirection','justifyContent','alignItems','gap',
393
+ 'gridTemplateColumns','gridTemplateRows',
394
+ 'borderRadius','border','borderTop','borderBottom','borderLeft','borderRight',
395
+ 'boxShadow','overflow','overflowX','overflowY',
396
+ 'position','top','right','bottom','left','zIndex',
397
+ 'opacity','transform','transformOrigin','transition','transitionProperty','transitionDuration','transitionTimingFunction','transitionDelay',
398
+ 'animation','animationName','animationDuration','animationTimingFunction','animationDelay','animationIterationCount','animationDirection','animationFillMode','animationPlayState','animationTimeline','animationRange','viewTimelineName','scrollTimelineName','cursor',
399
+ 'objectFit','objectPosition','mixBlendMode','filter','backdropFilter',
400
+ 'whiteSpace','textOverflow','WebkitLineClamp'
401
+ ];
402
+ function extractStyles(element) {
403
+ const cs = getComputedStyle(element);
404
+ const styles = {};
405
+ // Heuristic filter — for layout-audits, re-add any dropped `auto` / `normal` / transparent values the spec calls out as significant
406
+ 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; });
407
+ return styles;
408
+ }
409
+ function walk(element, depth) {
410
+ if (depth > 4) return null;
411
+ const children = [...element.children];
412
+ return {
413
+ tag: element.tagName.toLowerCase(),
414
+ classes: element.className?.toString().split(' ').slice(0, 5).join(' '),
415
+ text: element.childNodes.length === 1 && element.childNodes[0].nodeType === 3 ? element.textContent.trim().slice(0, 200) : null,
416
+ styles: extractStyles(element),
417
+ images: element.tagName === 'IMG' ? { src: element.src, alt: element.alt, naturalWidth: element.naturalWidth, naturalHeight: element.naturalHeight } : null,
418
+ childCount: children.length,
419
+ children: children.slice(0, 20).map(c => walk(c, depth + 1)).filter(Boolean)
420
+ };
421
+ }
422
+ return JSON.stringify(walk(el, 0), null, 2);
423
+ })('SELECTOR');
424
+ ```
425
+
426
+ 3. **Extract multi-state styles** — for any element with multiple states (scroll-triggered, hover, active tab), capture BOTH states:
427
+
428
+ ```javascript
429
+ // State A: capture styles at current state (e.g., scroll position 0)
430
+ // Then trigger the state change (scroll, click, hover via browser MCP)
431
+ // State B: re-run the extraction script on the same element
432
+ // The diff between A and B IS the behavior specification
433
+ ```
434
+
435
+ Record the diff explicitly: "Property X changes from VALUE_A to VALUE_B, triggered by TRIGGER, with transition: TRANSITION_CSS."
436
+
437
+ 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**.
438
+
439
+ 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).
440
+
441
+ 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).
442
+
443
+ ### Step 2: Write the Component Spec File
444
+
445
+ 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.
446
+
447
+ **File path:** `docs/research/components/<component-name>.spec.md`
448
+
449
+ **Template:**
450
+
451
+ ```markdown
452
+ # <ComponentName> Specification
453
+
454
+ ## Overview
455
+ - **Target file:** `src/components/<ComponentName>.tsx`
456
+ - **Screenshot:** `docs/design-references/<screenshot-name>.png`
457
+ - **Interaction model:** <static | click-driven | scroll-driven | time-driven>
458
+
459
+ ## DOM Structure
460
+ <Describe the element hierarchy — what contains what>
461
+
462
+ ## Computed Styles (exact values from getComputedStyle)
463
+
464
+ ### Container
465
+ - display: ...
466
+ - padding: ...
467
+ - maxWidth: ...
468
+ - (every relevant property with exact values)
469
+
470
+ ### <Child element 1>
471
+ - fontSize: ...
472
+ - color: ...
473
+ - (every relevant property)
474
+
475
+ ### <Child element N>
476
+ ...
477
+
478
+ ## Motion & animation (exact — from Chrome MCP `getComputedStyle` + stylesheet rules)
479
+
480
+ - **Keyframe names in use:** ...
481
+ - **Full `@keyframes` blocks** (paste `cssText` or equivalent); note **cross-origin** gaps and how you filled them
482
+ - **Per-element:** shorthand/longhand `animation` and `transition` values **verbatim** for resting state
483
+ - **Scroll/view timelines:** timeline name, range, scroll container, snap/observer thresholds
484
+ - **Libraries:** Lenis / GSAP / Framer / Lottie — hooks, init pattern, timing copied from reference
485
+ - **`prefers-reduced-motion`:** matched behavior on the reference
486
+
487
+ ## States & Behaviors
488
+
489
+ ### <Behavior name, e.g., "Scroll-triggered floating mode">
490
+ - **Trigger:** <exact mechanism — scroll position 50px, IntersectionObserver rootMargin "-30% 0px", click on .tab-button, hover>
491
+ - **State A (before):** maxWidth: 100vw, boxShadow: none, borderRadius: 0
492
+ - **State B (after):** maxWidth: 1200px, boxShadow: 0 4px 20px rgba(0,0,0,0.1), borderRadius: 16px
493
+ - **Transition:** transition: all 0.3s ease
494
+ - **Implementation approach:** <CSS transition + scroll listener | IntersectionObserver | CSS animation-timeline | etc.>
495
+
496
+ ### Hover states
497
+ - **<Element>:** <property>: <before> → <after>, transition: <value>
498
+
499
+ ## Per-State Content (if applicable)
500
+
501
+ ### State: "Featured"
502
+ - Title: "..."
503
+ - Subtitle: "..."
504
+ - Cards: [{ title, description, image, link }, ...]
505
+
506
+ ### State: "Productivity"
507
+ - Title: "..."
508
+ - Cards: [...]
509
+
510
+ ## Assets
511
+ - Background image: `public/images/<file>.webp`
512
+ - Overlay image: `public/images/<file>.png`
513
+ - Icons used: <ArrowIcon>, <SearchIcon> from icons.tsx
514
+
515
+ ## Text Content (verbatim)
516
+ <All text content, copy-pasted from the live site>
517
+
518
+ ## Responsive Behavior
519
+ - **Desktop (1440px):** <layout description>
520
+ - **Tablet (768px):** <what changes — e.g., "maintains 2-column, gap reduces to 16px">
521
+ - **Mobile (390px):** <what changes — e.g., "stacks to single column, images full-width">
522
+ - **Breakpoint:** layout switches at ~<N>px
523
+ ```
524
+
525
+ 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.
526
+
527
+ ### Step 3: Dispatch Builders
528
+
529
+ Based on complexity, dispatch builder agent(s) in worktree(s):
530
+
531
+ **Simple section** (1-2 sub-components): One builder agent gets the entire section.
532
+
533
+ **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.
534
+
535
+ **What every builder agent receives:**
536
+ - The full contents of its component spec file (inline in the prompt — don't say "go read the spec file")
537
+ - Path to the section screenshot in `docs/design-references/`
538
+ - Which shared components to import (`icons.tsx`, `cn()`, shadcn primitives)
539
+ - The target file path (e.g., `src/components/HeroSection.tsx`)
540
+ - Instruction to verify with `npx tsc --noEmit` before finishing
541
+ - For responsive behavior: the specific breakpoint values and what changes
542
+
543
+ **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.
544
+
545
+ ### Step 4: Merge
546
+
547
+ As builder agents complete their work:
548
+ - Merge their worktree branches into main
549
+ - You have full context on what each agent built, so resolve any conflicts intelligently
550
+ - After each merge, verify the build still passes: `npm run build`
551
+ - If a merge introduces type errors, fix them immediately
552
+
553
+ The extract → spec → dispatch → merge cycle continues until all sections are built.
554
+
555
+ ## Phase 4: Page Assembly
556
+
557
+ After all sections are built and merged, wire everything together in `src/app/page.tsx`:
558
+
559
+ - Import all section components
560
+ - Implement the page-level layout from your topology doc (scroll containers, column structures, sticky positioning, z-index layering)
561
+ - Connect real content to component props
562
+ - Implement page-level behaviors: scroll snap, scroll-driven animations, dark-to-light transitions, intersection observers, smooth scroll (Lenis etc.)
563
+ - Verify: `npm run build` passes clean
564
+
565
+ ## Phase 5: Visual QA Diff
566
+
567
+ After assembly, do NOT declare the clone complete. Take side-by-side comparison screenshots:
568
+
569
+ 1. Open the original site and your clone side-by-side (or take screenshots at the same viewport widths)
570
+ 2. Compare section by section, top to bottom, at desktop (1440px)
571
+ 3. Compare again at tablet (768px) — same widths as **Responsive sweep**
572
+ 4. Compare again at mobile (390px)
573
+ 5. For each discrepancy found:
574
+ - Check the component spec file — was the value extracted correctly?
575
+ - If the spec was wrong: re-extract from browser MCP, update the spec, fix the component
576
+ - If the spec was right but the builder got it wrong: fix the component to match the spec
577
+ 6. Test all interactive behaviors: scroll through the page, click every button/tab, hover over interactive elements
578
+ 7. **Motion QA (Chrome MCP again if needed):** For every animated or transitioned element, re-run `getComputedStyle` on the reference vs. the clone at the **same scroll position / interaction state** and compare **`animation-*`, `transition-*`, `transform`, `opacity`** longhands — **resolved** durations/easings must match where the cascade specifies them (Tailwind classes are fine when they compile to the same longhands; verify in **Computed**, not by class name alone). Re-record any `@keyframes` the reference still exposes so the clone can be patched until timings align.
579
+ 8. Verify smooth scroll feels right, header transitions work, tab switching works, stagger and scroll-driven reveals match the reference
580
+
581
+ Only after this visual + motion QA pass is the clone complete.
582
+
583
+ ## Pre-Dispatch Checklist
584
+
585
+ Before dispatching ANY builder agent, verify you can check every box. If you can't, go back and extract more.
586
+
587
+ - [ ] Spec file written to `docs/research/components/<name>.spec.md` with ALL sections filled
588
+ - [ ] Every CSS value in the spec is from `getComputedStyle()`, not estimated
589
+ - [ ] Interaction model is identified and documented (static / click / scroll / time)
590
+ - [ ] For stateful components: every state's content and styles are captured
591
+ - [ ] For scroll-driven components: trigger threshold, before/after styles, and transition are recorded
592
+ - [ ] For hover states: before/after values and transition timing are recorded
593
+ - [ ] Motion: relevant `@keyframes` captured (or cross-origin gap documented with manual paste), `docs/research/MOTION.md` updated, component specs include **exact** `animation*` / `transition*` / timeline fields from Chrome MCP
594
+ - [ ] All images in the section are identified (including overlays and layered compositions)
595
+ - [ ] Responsive behavior is documented for desktop, tablet, and mobile (1440 / 768 / 390)
596
+ - [ ] Text: **verbatim** from the reference **except** hero, main headings, and primary CTAs — those match the **SaaS idea** (reference copy still captured for audit if useful)
597
+ - [ ] The builder prompt is under ~150 lines of spec; if over, the section needs to be split
598
+
599
+ ## What NOT to Do
600
+
601
+ These are lessons from previous failed clones — each one cost hours of rework:
602
+
603
+ - **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.
604
+ - **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+.
605
+ - **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.
606
+ - **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.
607
+ - **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.
608
+ - **Don't build everything in one monolithic commit.** The whole point of this pipeline is incremental progress with verified builds at each step.
609
+ - **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.
610
+ - **Don't skip asset extraction.** Without real images, videos, and fonts, the clone will always look fake regardless of how perfect the CSS is.
611
+ - **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.
612
+ - **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.
613
+ - **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.
614
+ - **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.
615
+ - **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.
616
+
617
+ ## Completion
618
+
619
+ When done, report:
620
+ - Total sections built
621
+ - Total components created
622
+ - Total spec files written (should match components)
623
+ - Total assets downloaded (images, videos, SVGs, fonts)
624
+ - Build status (`npm run build` result)
625
+ - Visual QA results (any remaining discrepancies)
626
+ - Any known gaps or limitations