经 AI Skill Hub 精选评估,网站克隆工具 获评「强烈推荐」。这款Claude技能在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.0 分,适合有一定技术背景的用户使用。
使用AI代理实现网站pixel-perfect UI克隆和反向工程
网站克隆工具 是一款基于 JavaScript 开发的开源工具,专注于 ai-agents、automation、javascript 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
使用AI代理实现网站pixel-perfect UI克隆和反向工程
网站克隆工具 是一款基于 JavaScript 开发的开源工具,专注于 ai-agents、automation、javascript 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 方式一:npm 全局安装 npm install -g clone-team # 方式二:npx 直接运行(无需安装) npx clone-team --help # 方式三:项目依赖安装 npm install clone-team # 方式四:从源码运行 git clone https://github.com/Varalix-Digitech-Solutions/clone-team cd clone-team npm install npm start
# 命令行使用
clone-team --help
# 基本用法
clone-team [options] <input>
# Node.js 代码中使用
const clone_team = require('clone-team');
const result = await clone_team.run(options);
console.log(result);
# clone-team 配置说明 # 查看配置选项 clone-team --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export CLONE_TEAM_CONFIG="/path/to/config.yml"
These install automatically — clone-team ships scripts/install-deps.sh, an idempotent installer it runs on first use (and which you can run yourself any time: bash scripts/install-deps.sh, or --check for a dry run). By default it installs the companion skills project-local — into ./.claude/skills of the folder you're cloning in — so it never pollutes your global ~/.claude/skills (pass --global if you do want them installed globally). It skips whatever's already present:
ui-pack — design/frontend skill bundle (the single entry point the agents load); vendored with this plugin, so it's always available. It in turn loads its constituents below.clone-website — extraction + builder dispatchui-ux-pro-max, impeccable, emil-design-eng — design intelligence + polishui-animation — motion craft (transitions/keyframes/springs, easing, clip-path reveals, gestures, performance) for the two motion specialistsagent-browser — real-browser automation (npm CLI) for building and verifying; the one hard dependency (needs Node/npm on PATH)Every piece degrades gracefully if absent except agent-browser, which is required for real-browser verification.
A Claude Code skill that orchestrates a Manager, Frontend Developer, Backend Architect, and Tester to produce a pixel-perfect UI clone and a reverse-engineered ARCHITECTURE.md — in the stack you choose.
🌐 Website, demos & docs → clone-team.varalix.com
If this saves you a week of pixel-pushing, drop a ⭐ — it genuinely helps.
<br/>
<img src="docs/media/wembi-compare.gif" alt="wembi.ai — original (left) vs clone-team build (right), scroll-synced side by side" width="100%">
<sub><b>Original (left)</b> vs. <b>clone-team build (right)</b> — <a href="https://www.wembi.ai/">wembi.ai</a>, driven in lockstep so both stay at the same scroll point. A hard target: Lenis smooth-scroll + scroll-driven 3D + reveal animations. <a href="case-study/wembi/">Full case study →</a></sub>
</div>
---
Recommended — install as a plugin (one marketplace, one install, auto-updates). In Claude Code:
/plugin marketplace add Varalix-Digitech-Solutions/clone-team
/plugin install clone-team@clone-team
That's it — the skill and the /clone-status, /clone-pause, /clone-resume, /clone-report, and /clone-update commands are registered automatically. Plugin installs auto-update when a new version ships; run /clone-update anytime to check what you're on vs. the latest. (Restart Claude Code if the commands don't show up immediately.)
You don't install the companion skills yourself. The first time you run a clone, clone-team bootstraps its own toolchain — it runs a bundled, idempotent installer that fetches the agent-browser CLI and the companion skills (ui-pack and friends, ui-animation) project-local (into ./.claude/skills, so your global skills stay clean), skipping anything already present. Just install the plugin and ask it to clone a site; it sets itself up and then gets to work. See Dependencies.
<details> <summary><b>Alternative — manual skill install (no plugins)</b></summary>
```bash git clone https://github.com/Varalix-Digitech-Solutions/clone-team.git cp -r clone-team/skills/clone-team ~/.claude/skills/clone-team
Just ask Claude Code to clone a site — natural language triggers the skill:
Clone https://example.com — the marketing homepage — in Next.js,
and document how the site is put together.
The Manager then walks you through a short setup (you stay in control):
max-fidelity (Opus, default), cost-optimized (Sonnet + Haiku), or ultra-cheap.none / flows / inferred / deep.Then it runs the dynamic Workflow in the background and reports back with the clone + ARCHITECTURE.md.
cp clone-team/commands/clone-*.md ~/.claude/commands/
bash ~/.claude/skills/clone-team/scripts/install-deps.sh ``` </details>
Requirements: Claude Code, Node.js + npm (for the durable state CLI and to install agent-browser), and a Chromium browser (for real-browser verification via agent-browser). Everything else installs automatically — see Dependencies.
clone-team is built on Claude Code's new dynamic Workflow engine — and it's the whole reason the quality guarantee holds.
A dynamic Workflow is a deterministic JavaScript program that spawns and coordinates a fleet of subagents — where the loop count, fan-out width, and exit conditions are all computed at runtime from real data, not hardcoded. clone-team uses it so the process can't drift:
extract → spec → build → full-regression-test → fix → re-test … runs as a while loop whose exit condition is the Tester's OK. No human, no model, and no "looks fine under deadline pressure" can bypass it.NG isn't just a fail; its structured issue list becomes the next Developer round's fix list.state.json + on-disk artifacts.user ⇄ MANAGER (main thread) requirements, creds, recon, foundation,
│ final regression, pause/resume
│ launches a DYNAMIC WORKFLOW that ENFORCES the loop
▼
per page, in parallel: extract → spec → DEVELOPER builds →
TESTER full regression → (NG) fix → re-test → OK ✅
in parallel: BACKEND ARCHITECT writes ARCHITECTURE.md
then: assemble → final regression → fix
Two gates protect quality — the Tester (inside the loop) and the Manager (final sign-off) — and nothing ships past both.
clone-team 是一款专为 Claude Code 设计的高级 Skill,旨在通过协调一组 AI Agent 团队来克隆任何网站。该工具通过模拟 Manager、Frontend Developer、Backend Architect 和 Tester 的协作模式,不仅能生成像素级还原的 UI Clone,还能自动逆向工程并生成详细的 ARCHITECTURE.md 文档。开发者可以根据需求自由选择技术栈,实现高度定制化的网站复刻。
使用本项目需要预装 Claude Code、Node.js 及 npm 环境。此外,系统需要一个 Chromium 浏览器,以便通过 agent-browser 进行真实的浏览器环境验证。项目提供了一个幂等的安装脚本 `scripts/install-deps.sh`,用于自动配置必要的依赖,确保开发环境的一致性。
推荐使用插件方式安装,这是最便捷且支持自动更新的方法。在 Claude Code 中直接运行插件市场命令:`/plugin marketplace add Varalix-Digitech-Solutions/clone-team` 随后执行 `/plugin install clone-team@clone-team` 即可完成。安装完成后,相关的 Skill 以及 `/clone-status`、`/clone-report` 等专用命令将自动注册并可用。
用户只需通过自然语言指令即可触发 Skill。例如,在 Claude Code 中输入 `Clone https://example.com — the marketing homepage — in Next.js, and document how the site is put together.`。随后,Manager Agent 会引导你完成必要的配置确认,包括选择技术栈(如 React、Next.js、Vue 等)以及定义克隆范围(全站或特定页面),确保整个过程在你的掌控之中。
你可以通过手动复制命令定义文件来配置自定义的 Slash Commands。将 `clone-team/commands/clone-*.md` 文件复制到 `~/.claude/commands/` 目录下,即可实现对特定命令的个性化定制与管理。
本项目通过运行内置的安装脚本来引导(bootstrap)配套的 Skills 以及 agent-browser CLI。开发者可以通过执行 `bash ~/.claude/skills/clone-team/scripts/install-deps.sh` 来初始化环境。该脚本具有幂等性,确保在多次运行或不同环境下都能稳定地构建出所需的运行环境。
clone-team 的核心引擎基于 Claude Code 最新的 dynamic Workflow 技术。这是一种确定性的 JavaScript 程序,能够动态地生成并协调一组子 Agent 团队。通过这种动态工作流,系统可以精确控制 Agent 的循环次数、并发扇出(fan-out)以及任务分配,从而在复杂的克隆任务中提供高质量的交付保障。
创新性的网站克隆工具,使用AI代理实现pixel-perfect UI克隆
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:网站克隆工具 的核心功能完整,质量优秀。对于Claude 重度用户来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | clone-team |
| 原始描述 | 开源Claude技能:🧬 Clone any website with a team of AI agents — pixel-perfect UI clone + reverse。⭐9 · JavaScript |
| Topics | ai-agentsautomationjavascript |
| GitHub | https://github.com/Varalix-Digitech-Solutions/clone-team |
| License | MIT |
| 语言 | JavaScript |
收录时间:2026-06-08 · 更新时间:2026-06-08 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端