launchframe 0.3.0 → 0.4.0
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.
- package/.claude/skills/clone-website/SKILL.md +473 -564
- package/.clinerules +147 -285
- package/.codex/skills/clone-website/SKILL.md +473 -564
- package/.continue/commands/clone-website.md +475 -566
- package/.continue/rules/project.md +151 -285
- package/.cursor/commands/clone-website.md +470 -561
- package/.cursor/rules/project.mdc +7 -22
- package/.gemini/commands/clone-website.toml +476 -567
- package/.github/copilot-instructions.md +147 -281
- package/.github/skills/clone-website/SKILL.md +473 -564
- package/.gitignore +49 -0
- package/.opencode/commands/clone-website.md +473 -564
- package/.windsurf/workflows/clone-website.md +470 -561
- package/AGENTS.md +65 -160
- package/README.md +162 -121
- package/bin/launchframe.mjs +343 -0
- package/docs/research/INSPECTION_GUIDE.md +80 -124
- package/package.json +97 -54
- package/src/app/globals.css +1 -93
- package/src/app/layout.tsx +16 -5
- package/src/app/page.tsx +37 -2
- package/src/lib/launchframe-config.ts +8 -0
- package/.amazonq/cli-agents/clone-website.json +0 -9
- package/.amazonq/rules/project.md +0 -281
- package/.augment/commands/clone-website.md +0 -565
- package/.claude/skills/marketing-social-proof-motion/SKILL.md +0 -47
- package/.cursor/commands/marketing-social-proof-motion.md +0 -42
- package/.nvmrc +0 -1
- package/CHANGELOG.md +0 -80
- package/START_HERE.md +0 -15
- package/docs/design-references/playwright-example.com-1440px.png +0 -0
- package/docs/design-references/playwright-example.com-390px.png +0 -0
- package/launchframe.config.json +0 -14
- package/public/images/.gitkeep +0 -0
- package/public/seo/.gitkeep +0 -0
- package/public/videos/.gitkeep +0 -0
- package/scripts/recon-playwright.mjs +0 -396
- package/src/components/marketing/scribewise-landing.tsx +0 -34
|
@@ -1,22 +1,7 @@
|
|
|
1
|
-
---
|
|
2
|
-
description:
|
|
3
|
-
alwaysApply: true
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
This
|
|
7
|
-
|
|
8
|
-
## Shorthand (what users actually type)
|
|
9
|
-
|
|
10
|
-
When the user says **Build it**, **Go**, **Ship it**, **Clone the site**, **Run launchframe**, or similar, with **no** new URL or idea in the same message:
|
|
11
|
-
|
|
12
|
-
1. Read `launchframe.config.json` first (authoritative `url` + `idea`).
|
|
13
|
-
2. Execute the **full** workflow described in `AGENTS.md` and in `.cursor/commands/clone-website.md` (recon → foundation → component specs → build → SaaS rebrand pass → assembly → QA).
|
|
14
|
-
3. Continue until `npm run build` passes unless the user stops you.
|
|
15
|
-
|
|
16
|
-
Do **not** ask the user to re-type the URL or idea unless the config is missing or broken. Optional slash commands: **`/clone-website`** (full clone pipeline from `launchframe.config.json`), **`/marketing-social-proof-motion`** (named companies + logos + motion-heavy proof sections — see `.claude/skills/marketing-social-proof-motion/SKILL.md`). **Idea-tailored imagery** (unique art per `idea`) is required guidance in **`AGENTS.md`** — encoded in rebrand **Imagery** + **Phase 4.6**, not a separate skill.
|
|
17
|
-
|
|
18
|
-
## Browser automation
|
|
19
|
-
|
|
20
|
-
If no Browser MCP is available **or Chrome DevTools MCP is in an error state**, run **`npm run recon`** (Playwright) — then continue the pipeline from `docs/research/computed-snapshot.json` and `MEDIA_MANIFEST.md`. Use **`npm run recon:headed`** for tough WAF pages. Install browsers once: **`npx playwright install chromium`**.
|
|
21
|
-
|
|
22
|
-
If Playwright still hits a challenge page, document it in **`docs/research/EXTRACTION_LIMITATIONS.md`** and fall back only as a last resort.
|
|
1
|
+
---
|
|
2
|
+
description: Project conventions — see AGENTS.md for full details
|
|
3
|
+
alwaysApply: true
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
This project uses AGENTS.md as the single source of truth for all AI agent instructions.
|
|
7
|
+
Cursor reads AGENTS.md automatically — see the project root for complete guidelines.
|