web-clone

web-clone is a skill for Claude Code, Codex from IAPro-Community/Orquestrador-Maestro. It costs 13 tokens per session (4,098 once invoked), scanned A, original, Apache-2.0.

A skill for copying a website from a URL while checking both its visual appearance and its behaviour.

In plain words
What is it for?
It is for cloning websites and verifying that the recreated pages look and work like the originals.
Why use it?
It helps reproduce an existing site more accurately than copying only its visible page structure.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Codex; $skill-name invocation.

Good fit It is for cloning websites and verifying that the recreated pages look and work like the originals.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/iapro-community/orquestrador-maestro/web-clone
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add IAPro-Community/Orquestrador-Maestro --skill web-clone
Clone the repo
git clone --depth 1 https://github.com/IAPro-Community/Orquestrador-Maestro

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for web-clone

README.md
[![agentmods](https://agentmods.dev/badge/skills/iapro-community/orquestrador-maestro/web-clone/github.svg)](https://agentmods.dev/skills/iapro-community/orquestrador-maestro/web-clone)
Your own site
<a href="https://agentmods.dev/skills/iapro-community/orquestrador-maestro/web-clone"><img src="https://agentmods.dev/badge/skills/iapro-community/orquestrador-maestro/web-clone/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for web-clone

Your own site · 80×15
<a href="https://agentmods.dev/skills/iapro-community/orquestrador-maestro/web-clone"><img src="https://agentmods.dev/badge/skills/iapro-community/orquestrador-maestro/web-clone.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 13 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,098 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 229
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 231
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00013 $0.04098
Opus 5 $0.00006 $0.02049
Sonnet 5 $0.00003 $0.00820
Haiku 4.5 $0.00001 $0.00410

Measured 5d ago against content hash 77ae2a3aafd8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

web-clone scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

codex/skills/web-clone/SKILL.md · 367 lines

How it starts

The opening of the file, as written. The whole thing — 367 lines — stays where its author put it; the contents beside it link to each section on GitHub.

<Use_When>

  • User provides a target URL and wants the site replicated as working code
  • User says "clone site", "clone website", "copy webpage", or "web-clone"
  • Task requires both visual fidelity AND functional parity with the original
  • Reference is a live URL (not a static screenshot — use $visual-verdict for screenshot-only tasks) </Use_When>

<Do_Not_Use_When>

  • User only has screenshot references without a live URL — use $visual-verdict directly
  • User wants to modify, redesign, or "improve" the site — use standard implementation flow
  • Target requires authentication, payment flows, or backend API parity — out of scope for v1
  • Multi-page / multi-route deep cloning — v1 handles single-page scope only </Do_Not_Use_When>

<Scope_Limits> v1 scope: Single page clone of the provided URL.

Included:

  • Layout structure (header, nav, content areas, sidebar, footer)
  • Typography (font families, sizes, weights, line heights)
  • Colors, spacing, borders, border-radius
  • Core interactions: navigation links, buttons, form elements, dropdowns, modals, toggles
  • Responsive hints from the extracted layout (flexbox/grid patterns)

Excluded:

  • Backend API integration or data fetching
  • Authentication flows or protected content
  • Dynamic/personalized content (user-specific data)
  • Multi-page crawling or route graph cloning
  • Third-party widget functionality (maps, embeds, chat widgets)
  • Image/asset replication (use placeholders for external images)

Legal notice: Only clone sites you own or have explicit permission to replicate. Respect copyright and trademarks. </Scope_Limits>

  1. Before first tool use, call ToolSearch("browser") or ToolSearch("playwright") to discover available browser tools.
  2. If no browser tools are found, instruct the user:
    Playwright MCP is required. Configure it:
    codex mcp add playwright npx "@playwright/mcp@latest"
    
  3. Required tools: browser_navigate, browser_snapshot, browser_take_screenshot, browser_evaluate, browser_wait_for. Optional: browser_click, browser_network_requests.

<Tool_Usage>

  • Before first MCP tool use, call ToolSearch("browser") or ToolSearch("playwright") to discover deferred Playwright MCP tools.
  • If no browser tools are found, stop immediately and instruct the user to configure Playwright MCP.
  • Use browser_snapshot (accessibility tree) for structural understanding — it is far more token-efficient than screenshots.
  • Use browser_take_screenshot only when visual verification is needed (Pass 1 baseline, Pass 4 comparison).
  • Use browser_evaluate for DOM/style extraction — pass the scripts from this skill EXACTLY as written (do not modify them).
  • If running within ralph, use state_write / state_read for web-clone state persistence between iterations.
  • Skip Codex consultation for straightforward extraction; use it only if verification repeatedly fails on the same issue. </Tool_Usage>

<State_Management> Persist extraction and progress data so the pipeline can resume if interrupted.

  • After Pass 1 completes: Write extraction summary to .omx/state/{scope}/web-clone-extraction.json containing:
    • target_url, extracted_at timestamp
    • screenshot_path (path to target-full.png)
    • landmark_count (number of nav, main, footer, form elements)
    • interactive_count (number of detected interactive elements)
    • extraction_size_kb (approximate size of DOM extraction data)
  • After each Pass 4 verification: Append the composite verdict to .omx/state/{scope}/web-clone-verdicts.json.
  • When running within ralph: Also persist the visual portion of the composite verdict to .omx/state/{scope}/ralph-progress.json for ralph compatibility, mapping visual.score → top-level score and visual.verdict → top-level verdict.
  • On completion or failure: Write final status with completed_at or failed_at timestamp. </State_Management>

Read the full file on GitHub · 367 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 367 lines · 13 tokens per session scan A 77ae2a3aafd8

Subscribe to this mod's changes

web-clone is a skill published in the GitHub repository IAPro-Community/Orquestrador-Maestro (41 stars, last pushed today), licensed Apache-2.0. It adds 13 tokens to every session and 4,098 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

clone-website

Reverse-engineer and clone a website in one shot — extracts assets, CSS, and content section-by-section and proactively dispatches parallel builder agents in worktrees as it goes. Use this whenever the user wants to clone, replicate, rebuild, reverse-engineer, or copy any website. Also triggers on phrases like "make a…

vibeeval/vibecosystem · 93 tokens

responsiveness-check

Test website responsiveness across viewport widths using browser automation. Resizes a single session through breakpoints, screenshots each width, and detects layout transitions (column changes, nav switches, overflow). Produces comparison reports showing exactly where layouts break. Trigger with 'responsiveness…

jezweb/claude-skills · 85 tokens

figma-to-coded-html

Convert Figma designs into self-contained, shareable single-file HTML with all UI elements coded in HTML/CSS/SVG and only actual photographs embedded as inline base64. Use this skill whenever the user asks to convert a Figma file/URL to HTML, export Figma designs as code, create HTML from Figma, turn a Figma mockup…

agnt-gg/agnt · 224 tokens

mockup-extraction

Extract reusable components from approved HTML mockups during implementation. Identifies patterns, maps CSS to Tailwind, and populates prototype-patterns.md for visual fidelity. Use at start of /implement for UI-first features.

marcusgoll/Spec-Flow · 48 tokens

shadcn-integration

Integration guide for shadcn/ui components with OKLCH design tokens. Use when setting up shadcn, customizing themes, or adding components to Next.js projects. Auto-trigger on /init --tokens --shadcn flag.

marcusgoll/Spec-Flow · 53 tokens

high-end-website-design

End-to-end pipeline for producing ULTRA high-end, novel, single-file HTML landing pages and presentation slides featuring AI-generated hero imagery and seamlessly looping AI video backgrounds. Combines Gemini Nano Banana Pro for cinematic stills, ByteDance Seedance 2.0 for native looping video clips (firstFrameUrl ==…

agnt-gg/agnt · 225 tokens