launchframe 0.3.0 → 0.3.1
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/README.md +56 -121
- package/bin/launchframe.mjs +315 -0
- package/package.json +52 -54
- package/template/LICENSE +21 -0
- package/template/README.md +121 -0
- package/template/package-lock.json +9873 -0
- package/template/package.json +54 -0
- package/CHANGELOG.md +0 -80
- /package/{.aider.conf.yml → template/.aider.conf.yml} +0 -0
- /package/{.amazonq → template/.amazonq}/cli-agents/clone-website.json +0 -0
- /package/{.amazonq → template/.amazonq}/rules/project.md +0 -0
- /package/{.augment → template/.augment}/commands/clone-website.md +0 -0
- /package/{.claude → template/.claude}/skills/clone-website/SKILL.md +0 -0
- /package/{.claude → template/.claude}/skills/marketing-social-proof-motion/SKILL.md +0 -0
- /package/{.clinerules → template/.clinerules} +0 -0
- /package/{.codex → template/.codex}/skills/clone-website/SKILL.md +0 -0
- /package/{.continue → template/.continue}/commands/clone-website.md +0 -0
- /package/{.continue → template/.continue}/rules/project.md +0 -0
- /package/{.cursor → template/.cursor}/commands/clone-website.md +0 -0
- /package/{.cursor → template/.cursor}/commands/marketing-social-proof-motion.md +0 -0
- /package/{.cursor → template/.cursor}/rules/project.mdc +0 -0
- /package/{.dockerignore → template/.dockerignore} +0 -0
- /package/{.gemini → template/.gemini}/commands/clone-website.toml +0 -0
- /package/{.gitattributes → template/.gitattributes} +0 -0
- /package/{.github → template/.github}/ISSUE_TEMPLATE/bug_report.yml +0 -0
- /package/{.github → template/.github}/ISSUE_TEMPLATE/config.yml +0 -0
- /package/{.github → template/.github}/ISSUE_TEMPLATE/feature_request.yml +0 -0
- /package/{.github → template/.github}/PULL_REQUEST_TEMPLATE.md +0 -0
- /package/{.github → template/.github}/copilot-instructions.md +0 -0
- /package/{.github → template/.github}/copilot-setup-steps.yml +0 -0
- /package/{.github → template/.github}/skills/clone-website/SKILL.md +0 -0
- /package/{.github → template/.github}/workflows/ci.yml +0 -0
- /package/{.nvmrc → template/.nvmrc} +0 -0
- /package/{.opencode → template/.opencode}/commands/clone-website.md +0 -0
- /package/{.windsurf → template/.windsurf}/workflows/clone-website.md +0 -0
- /package/{.windsurfrules → template/.windsurfrules} +0 -0
- /package/{AGENTS.md → template/AGENTS.md} +0 -0
- /package/{CLAUDE.md → template/CLAUDE.md} +0 -0
- /package/{Dockerfile → template/Dockerfile} +0 -0
- /package/{Dockerfile.dev → template/Dockerfile.dev} +0 -0
- /package/{GEMINI.md → template/GEMINI.md} +0 -0
- /package/{START_HERE.md → template/START_HERE.md} +0 -0
- /package/{components.json → template/components.json} +0 -0
- /package/{docker-compose.yml → template/docker-compose.yml} +0 -0
- /package/{docs → template/docs}/design-references/.gitkeep +0 -0
- /package/{docs → template/docs}/design-references/comparison.png +0 -0
- /package/{docs → template/docs}/design-references/playwright-example.com-1440px.png +0 -0
- /package/{docs → template/docs}/design-references/playwright-example.com-390px.png +0 -0
- /package/{docs → template/docs}/research/INSPECTION_GUIDE.md +0 -0
- /package/{eslint.config.mjs → template/eslint.config.mjs} +0 -0
- /package/{launchframe.config.json → template/launchframe.config.json} +0 -0
- /package/{next.config.ts → template/next.config.ts} +0 -0
- /package/{postcss.config.mjs → template/postcss.config.mjs} +0 -0
- /package/{public → template/public}/images/.gitkeep +0 -0
- /package/{public → template/public}/seo/.gitkeep +0 -0
- /package/{public → template/public}/videos/.gitkeep +0 -0
- /package/{scripts → template/scripts}/.gitkeep +0 -0
- /package/{scripts → template/scripts}/recon-playwright.mjs +0 -0
- /package/{scripts → template/scripts}/sync-agent-rules.sh +0 -0
- /package/{scripts → template/scripts}/sync-skills.mjs +0 -0
- /package/{src → template/src}/app/favicon.ico +0 -0
- /package/{src → template/src}/app/globals.css +0 -0
- /package/{src → template/src}/app/layout.tsx +0 -0
- /package/{src → template/src}/app/page.tsx +0 -0
- /package/{src → template/src}/components/marketing/scribewise-landing.tsx +0 -0
- /package/{src → template/src}/components/ui/button.tsx +0 -0
- /package/{src → template/src}/hooks/.gitkeep +0 -0
- /package/{src → template/src}/lib/utils.ts +0 -0
- /package/{src → template/src}/types/.gitkeep +0 -0
- /package/{tsconfig.json → template/tsconfig.json} +0 -0
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ai-website-cloner-template",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"private": true,
|
|
5
|
+
"description": "clone any website into a clean, modern Next.js codebase using AI coding agents",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"claude-code",
|
|
9
|
+
"website-clone",
|
|
10
|
+
"reverse-engineering",
|
|
11
|
+
"nextjs",
|
|
12
|
+
"ai",
|
|
13
|
+
"template",
|
|
14
|
+
"tailwindcss",
|
|
15
|
+
"shadcn-ui"
|
|
16
|
+
],
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": ">=24"
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"dev": "next dev",
|
|
22
|
+
"build": "next build",
|
|
23
|
+
"start": "next start",
|
|
24
|
+
"lint": "eslint",
|
|
25
|
+
"typecheck": "tsc --noEmit",
|
|
26
|
+
"check": "npm run lint && npm run typecheck && npm run build",
|
|
27
|
+
"recon": "node scripts/recon-playwright.mjs",
|
|
28
|
+
"recon:headed": "node scripts/recon-playwright.mjs --headed"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@base-ui/react": "^1.3.0",
|
|
32
|
+
"class-variance-authority": "^0.7.1",
|
|
33
|
+
"clsx": "^2.1.1",
|
|
34
|
+
"framer-motion": "^12.4.0",
|
|
35
|
+
"lucide-react": "^1.6.0",
|
|
36
|
+
"next": "16.2.1",
|
|
37
|
+
"react": "19.2.4",
|
|
38
|
+
"react-dom": "19.2.4",
|
|
39
|
+
"shadcn": "^4.1.0",
|
|
40
|
+
"tailwind-merge": "^3.5.0",
|
|
41
|
+
"tw-animate-css": "^1.4.0"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@tailwindcss/postcss": "^4",
|
|
45
|
+
"@types/node": "^24",
|
|
46
|
+
"@types/react": "^19",
|
|
47
|
+
"@types/react-dom": "^19",
|
|
48
|
+
"eslint": "^9",
|
|
49
|
+
"eslint-config-next": "16.2.1",
|
|
50
|
+
"playwright": "^1.49.1",
|
|
51
|
+
"tailwindcss": "^4",
|
|
52
|
+
"typescript": "^5"
|
|
53
|
+
}
|
|
54
|
+
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
|
|
5
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
-
|
|
8
|
-
## [Unreleased]
|
|
9
|
-
|
|
10
|
-
### Changed
|
|
11
|
-
- Raised the project Node.js baseline to 24 across local development, CI, Docker, and contributor-facing documentation
|
|
12
|
-
|
|
13
|
-
## [0.3.1] - 2026-03-29
|
|
14
|
-
|
|
15
|
-
### Fixed
|
|
16
|
-
- `sync-agent-rules.sh` failing to resolve `@file` imports on Windows due to CRLF line endings — platform instruction files now correctly inline the Inspection Guide content
|
|
17
|
-
|
|
18
|
-
## [0.3.0] - 2026-03-29
|
|
19
|
-
|
|
20
|
-
### Added
|
|
21
|
-
- Multi-URL support for `/clone-website` — clone multiple sites in a single command with parallel processing and isolated output
|
|
22
|
-
- CI quality gates via GitHub Actions — automated lint, typecheck, and build on every push and PR
|
|
23
|
-
- `npm run typecheck` and `npm run check` scripts for local quality validation
|
|
24
|
-
- `.gitattributes` for cross-platform line ending normalization
|
|
25
|
-
- `.nvmrc` to pin Node.js 20 for contributor consistency
|
|
26
|
-
|
|
27
|
-
### Changed
|
|
28
|
-
- Streamlined PR template — removed redundant checklist items and screenshots section
|
|
29
|
-
- Improved project description and README — clearer use cases, limitations, and modern wording
|
|
30
|
-
- Refined documentation and agent rules across all platforms for clarity and consistency
|
|
31
|
-
- Fixed CRLF handling in `sync-skills.mjs` for reliable Windows operation
|
|
32
|
-
|
|
33
|
-
### Removed
|
|
34
|
-
- Outdated use case from README documentation
|
|
35
|
-
|
|
36
|
-
## [0.2.0] - 2026-03-28
|
|
37
|
-
|
|
38
|
-
### Added
|
|
39
|
-
- Multi-platform AI agent support: Claude Code, Codex CLI, OpenCode, GitHub Copilot, Cursor, Windsurf, Gemini CLI, Cline/Roo Code, Continue, Amazon Q, Augment Code, Aider
|
|
40
|
-
- Platform-specific instruction files and `/clone-website` skill for each supported agent
|
|
41
|
-
- `scripts/sync-agent-rules.sh` to regenerate platform instruction files from AGENTS.md
|
|
42
|
-
- `scripts/sync-skills.mjs` to regenerate `/clone-website` skill across all platforms
|
|
43
|
-
- GEMINI.md for Gemini CLI configuration
|
|
44
|
-
- Supported Platforms table in README
|
|
45
|
-
- "Updating for Other Platforms" documentation section in README
|
|
46
|
-
|
|
47
|
-
### Changed
|
|
48
|
-
- README now describes the project as multi-agent (Claude Code recommended, not required)
|
|
49
|
-
- AGENTS.md updated with sync script reminders
|
|
50
|
-
|
|
51
|
-
## [0.1.1] - 2026-03-28
|
|
52
|
-
|
|
53
|
-
### Added
|
|
54
|
-
- Bug report and feature request issue templates
|
|
55
|
-
- Pull request template with checklist
|
|
56
|
-
- CHANGELOG.md following Keep a Changelog format
|
|
57
|
-
- Package.json metadata (description, repository, homepage, keywords, engines)
|
|
58
|
-
|
|
59
|
-
### Fixed
|
|
60
|
-
- LICENSE copyright holder now attributed to JCodesMore
|
|
61
|
-
|
|
62
|
-
## [0.1.0] - 2026-03-28
|
|
63
|
-
|
|
64
|
-
### Added
|
|
65
|
-
- Initial template scaffold for website reverse-engineering with Claude Code
|
|
66
|
-
- `/clone-website` skill for full-site cloning pipeline
|
|
67
|
-
- `/build-from-spec` and `/customize` skills
|
|
68
|
-
- Parallel builder agents with git worktree isolation
|
|
69
|
-
- Chrome MCP integration for design token extraction
|
|
70
|
-
- Comprehensive inspection guide and project structure documentation
|
|
71
|
-
- Next.js 16 + shadcn/ui + Tailwind CSS v4 base scaffold
|
|
72
|
-
- MIT license
|
|
73
|
-
- README with badges, demo section, quick start, and star history
|
|
74
|
-
|
|
75
|
-
[Unreleased]: https://github.com/JCodesMore/ai-website-cloner-template/compare/v0.3.1...HEAD
|
|
76
|
-
[0.3.1]: https://github.com/JCodesMore/ai-website-cloner-template/compare/v0.3.0...v0.3.1
|
|
77
|
-
[0.3.0]: https://github.com/JCodesMore/ai-website-cloner-template/compare/v0.2.0...v0.3.0
|
|
78
|
-
[0.2.0]: https://github.com/JCodesMore/ai-website-cloner-template/compare/v0.1.1...v0.2.0
|
|
79
|
-
[0.1.1]: https://github.com/JCodesMore/ai-website-cloner-template/compare/v0.1.0...v0.1.1
|
|
80
|
-
[0.1.0]: https://github.com/JCodesMore/ai-website-cloner-template/releases/tag/v0.1.0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|