经 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.
创新性的网站克隆工具,使用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 类型,复制安装指令后粘贴到对应客户端