The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the WebEmbedding listing page.
webEmbedding is a source-first website cloning engine for AI coding agents: it captures live pages with Playwright, replays network evidence from HAR artifacts, rebuilds only when direct reuse is blocked, and self-verifies the result.
It ships as a Skill + MCP server. Instead of asking a model to "clone this site" from a screenshot, it inspects the URL, chooses a reuse or rebuild route, captures DOM/runtime HTML/styles/assets/network traces, generates bounded frontend reconstruction artifacts, and checks the output with visual, DOM, computed-style, interaction, and responsive-breakpoint verification.

GitHub listing, social preview, and launch-copy recommendations are in docs/github-listing.md.
The current pipeline is strongest for static and semi-static web pages:
It is not a full backend or app-logic clone engine. Login-only screens, app-first or native-app-required services, captcha-heavy sites, maps, games, canvas/WebGL-heavy pages, real-time feeds, payments, booking flows, and private server behavior still need separate handling.
Operationally, the repo is now a production-candidate clone engine for URL-based capture and bounded reconstruction: jobs can be queued, network evidence can be replay-audited from HAR artifacts, authenticated dashboard runs can be driven from user-owned browser state, and local gates verify the route corpus, score checks, package contents, and CI wiring. The remaining hard boundary is server-side product behavior, not front-end evidence capture and reconstruction.
Recent local benchmark runs from this repo:
| URL | Path | Score |
|---|---|---|
https://developer.mozilla.org/en-US/ | iframe-blocked bounded rebuild | root 94, visual 95, mobile 94, tablet 94, breakpoint average 94 |
https://www.mozilla.org/ | bounded rebuild | root 94, visual 100 |
https://www.python.org | harder bounded rebuild sample | root 90, visual 100 |
https://www.example.com | exact reuse | ready yes |
These are generated by the local self-verify pipeline, not manually assigned ratings.
The reproducible commands and score thresholds are tracked in docs/benchmark-evidence.json.
Production readiness gates are tracked in docs/production-pipeline-gates.json.
X-Frame-Options and CSP-blocked pages by rebuilding from captured evidencenetwork-replay-limited, auth-session-missing, public-app-gate, and canvas-visual-fallbackreplay_readiness before treating captured network evidence as replay-gradenetwork/manifest.json artifactsstorage_state_path or user_data_dir outside the repo1440x1200768x1024390x844The package uses playwright-core; it does not download a browser by itself.
Installing this project adds the source-first-clone plugin bundle, the exact-clone-intake skill, and the MCP server that exposes the URL inspection, capture, rebuild, and verification tools.
Clone a public URL after installing:
If you already have an older local plugin installed, overwrite it with:
You can also run the installer without a global install:
For MCP clients that can launch npm stdio servers:
For local smoke testing:
The MCP Registry identity is io.github.jongko54/web-embedding; server.json and package.json#mcpName are kept in sync for registry ownership verification.
The public remote MCP intake endpoint for Apps SDK Developer Mode is:
It exposes low-risk source-first routing tools such as URL inspection, embed candidate discovery, clone-mode classification, and embed snippet generation. Full browser capture, HAR replay, queues, bounded rebuilds, and one-pass clone execution remain local-first through the stdio MCP package.
Apps SDK review pages are hosted alongside the endpoint:
https://webembedding-jongkos-mcp.vercel.app/privacy.html,
https://webembedding-jongkos-mcp.vercel.app/terms.html, and
https://webembedding-jongkos-mcp.vercel.app/submission.html.
webEmbedding has two different execution boundaries:
http and https URLs, does not run Playwright, does not read local files, does not use browser profiles or storage state, and does not persist capture artifacts.output_dir or queue_root.storage_state_path or user_data_dir. webEmbedding does not collect credentials, perform login bypasses, or treat a public login shell as private app evidence.needs_session, or sent to manual review unless the user has explicit authorization and supplies the needed evidence.Local URL entrypoints reject non-HTTP schemes such as file:// so an agent cannot use clone/capture tools as a local file reader. Telemetry is disabled by default and, when enabled, excludes target URLs, local paths, captured HTML, screenshots, storage state, environment variables, API keys, and command output.
This repository includes marketplace metadata for the two local agent surfaces:
.agents/plugins/marketplace.json points to ./bundle/source-first-clone..claude-plugin/marketplace.json points to the same bundle and the bundle includes .claude-plugin/plugin.json.Claude Code users can add the marketplace from GitHub with:
AI auto-selection expectations and golden prompts live in docs/ai-distribution.md and evals/ai-selection/webembedding-golden-prompts.json.
Useful for testing without touching your real agent home:
Telemetry is disabled by default. On an interactive first install, web-embedding install asks once and defaults to No. Non-interactive installs such as CI and curl | bash do not prompt. If you opt in, web-embedding sends a small anonymous command-completion event to a JSON POST endpoint you control. It does not send target URLs, local paths, captured HTML, screenshots, storage state, environment variables, API keys, or command output.
Enable it during install:
Or manage it later:
Each event contains an anonymous install id, package version, command name, success/failure status, OS/runtime basics, and coarse option flags such as breakpoint_count or install_source.
Environment controls:
Run a local/self-hosted JSONL collector:
Summarize collected usage:
The summary includes install and clone executions, total command executions, unique anonymous install IDs, command counts, and version counts. See docs/telemetry.md for collector and analyzer details.
Inspect a URL and get route hints:
Run a safe preflight audit before capture or clone:
The audit reports whether the reference is ready for exact/embed reuse, needs local capture, needs an authenticated session, requires manual review, or should be blocked before any browser capture or filesystem output runs.
Run the full clone workflow:
Run a lightweight quality benchmark:
The benchmark prints compact rows for root, visual, and breakpoint scores. The full artifacts are written under the output directory.
A clone run can produce:
capture.jsonpipeline-run-manifest.jsondom/snapshot.jsondom/runtime.htmlstyles/computed-summary.jsonstyles/css-analysis.jsonnetwork/manifest.jsonnetwork/har.jsonnetwork/har-like.jsonnetwork/replay-report.jsonassets/inventory.jsoninteractions/states.jsoninteractions/trace.jsonscreenshots/runtime.pngsession/storage-state.jsonreproduction/plan.jsonreproduction/evidence-limitations.jsonreproduction/rebuild-prompt.txtreproduction/rebuild/starter.htmlreproduction/rebuild/starter.cssreproduction/rebuild/starter.tsxreproduction/rebuild/next-app/reproduction/self-verify/summary.jsonreproduction/self-verify/renderers/*/verification.jsonreproduction/self-verify/renderers/*/visual-qa.jsonreproduction/self-verify/renderers/*/breakpoints/*-verification.jsonRun the default small benchmark:
Run the universal route regression corpus and expectations gate:
Run a lightweight clone score gate:
Validate the committed benchmark evidence manifest:
Validate production pipeline gates:
Run the operational smokes individually:
Classify failure/action codes from a route report:
Find low-scoring persisted benchmark artifacts:
Run specific URLs:
Run a responsive benchmark:
bundle/source-first-clone
Installed plugin bundle, MCP server, and exact-clone intake skill.bundle/source-first-clone/mcp/source_first_clone
Capture, planning, rebuild, repair, and verification engine.bin/web-embedding.mjs
Node CLI wrapper.python/web_embedding/installer.py
Shared installer and command dispatcher.scripts/check_clone_quality_bench.py
URL clone quality benchmark helper.scripts/benchmark_routes.py
Universal route/capture-depth regression benchmark helper.scripts/check_benchmark_report.py
Benchmark expectation validator for exact, minimum, and contains-style checks.scripts/check_benchmark_evidence.py
Benchmark evidence manifest validator.scripts/check_job_queue_smoke.py
Filesystem async clone job queue smoke test.scripts/check_har_replay_smoke.py
Deterministic HAR replay engine smoke test.scripts/benchmark_authenticated_corpus.py
User-provided authenticated dashboard corpus runner.scripts/summarize_benchmark_scores.py
Utility for finding low or high scoring persisted benchmark artifacts under an output root.scripts/classify_pipeline_failures.py
Operational failure/action taxonomy summarizer for reports and capture artifacts.scripts/check_production_readiness.py
Production readiness gate validator for corpus, failure taxonomy, CI wiring, and policy docs.scripts/check_integration_smoke.py
Release, install, and URL-only clone smoke test.scripts/release_bundle.py
Release artifact builder.docs/
Architecture notes and universal benchmark documentation.The strongest claim for this project is:
A source-first website cloning engine that combines Playwright capture, HAR replay, MCP tools, and self-verification to rebuild iframe-blocked public pages with reproducible visual, DOM, style, interaction, and responsive scores.
Avoid treating the output as a legal or ownership bypass. The engine can reconstruct public page structure, but permission, licensing, and acceptable use still matter.
MIT