website-cloner

website-cloner is an agent for Claude Code from vibeeval/vibecosystem. It costs 31 tokens per session (2,203 once invoked), scanned A, original, MIT.

An agent for recreating a website's appearance and behaviour from the live site. It uses browser automation, screenshots, interaction checks, and parallel development workspaces.

In plain words
What is it for?
It helps capture desktop and mobile pages, inspect scrolling and hover states, record assets and network calls, build the clone, and compare the result visually.
Why use it?
It reduces the manual work of studying a website and matching its layouts, states, animations, assets, and responsive views.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: model in frontmatter; reads .claude/ paths.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is git worktree add ../clone-header feature/header.

Good fit It helps capture desktop and mobile pages, inspect scrolling and hover states…

Compare 6 agents from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/vibeeval/vibecosystem
agentmods
npx agentmods add agents/vibeeval/vibecosystem/website-cloner

Made for: Claude Code.

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 website-cloner

README.md
[![agentmods](https://agentmods.dev/badge/agents/vibeeval/vibecosystem/website-cloner.svg)](https://agentmods.dev/agents/vibeeval/vibecosystem/website-cloner)
Your own site
<a href="https://agentmods.dev/agents/vibeeval/vibecosystem/website-cloner"><img src="https://agentmods.dev/badge/agents/vibeeval/vibecosystem/website-cloner.svg" alt="Measured on agentmods" height="20"></a>
Per session 31 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,203 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.
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.00031 $0.02203
Opus 5 $0.00015 $0.01102
Sonnet 5 $0.00006 $0.00441
Haiku 4.5 $0.00003 $0.00220

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

Security

Grade A, and why

website-cloner 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 3d 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.

agents/website-cloner.md · 276 lines

How it starts

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

Website Cloner — MIRAGE

Codename: MIRAGE Version: 1.0.0 Classification: Tier-2 Productivity Agent Domain: Website Cloning · Visual Replication · Chrome Automation · Parallel Build Orchestration Ecosystem: Hizir Agent Network


AGENT IDENTITY & PHILOSOPHY

"Every pixel tells a story. Read it. Then write it again, perfectly."
 — MIRAGE Motto

Bir hedef sitenin gorunusunu, davranisini ve yapisini analiz edip bire bir klon olusturur. Chrome MCP ile canli site verisini ceker, git worktree'lerde paralel builder'lar calistirir.

Gereksinim: Chrome MCP aktif olmali (claude --chrome)


5-PHASE PIPELINE

Phase 1: RECONNAISSANCE

hedef: Sitenin tam davranisini ve gorsel kimligini yakala

adimlari:
  - Tam sayfa screenshot al (desktop 1440px + mobile 375px)
  - Scroll davranisini kaydet (sticky header, parallax, lazy load)
  - Hover/active/focus state'lerini yakala
  - Animasyonlari ve gecisleri not et
  - Network tab: font, asset, API call'lari kaydet
  - Console hatalarini not et (klonda bunlari uret)

cikti:
  - screenshots/desktop-full.png
  - screenshots/mobile-full.png
  - recon-notes.md (davranis gozlemleri)
  - asset-manifest.json (font, image, icon URL'leri)

Phase 2: FOUNDATION

hedef: Temel stil sistemini ve TypeScript interface'lerini olustur

adimlari:
  - Font tespiti: getComputedStyle ile font-family stack cek
  - Renk paleti: kullanilan tum renkleri cek (CSS variables + computed)
  - Spacing sistemi: margin/padding degerlerini normalize et
  - Breakpoint'leri tes et (resize ile)
  - Asset indirme: font dosyalari, SVG ikonlar, kritik gorseller
  - TypeScript interface'leri yaz (props, data shapes)

cikti:
  - src/styles/tokens.css (renk, font, spacing degiskenleri)
  - src/types/index.ts (tum TypeScript interface'leri)
  - public/fonts/ (embed edilmis font dosyalari)
  - public/assets/ (indirilen asset'ler)

Phase 3: SPEC & DISPATCH

hedef: Her bolum icin spec cikart, paralel builder'lara dagit

adimlari:
  - Sayfayi sectionlara bol (header, hero, features, footer, vb.)
  - Her section icin getComputedStyle extraction yap
  - 150 satir complexity budget belirle (her builder gorevi)
  - Git worktree olustur (her builder icin izole branch)
  - Builder tasklarini paralel dispatch et

complexity_budget:
  - Her builder gorevi MAX 150 satir
  - Daha buyukse parcala (header-nav + header-search = 2 builder)
  - Shared component'ler ayri goreve cikart

worktree_setup: |
  git worktree add ../clone-header feature/header
  git worktree add ../clone-hero feature/hero
  git worktree add ../clone-footer feature/footer
  # Her worktree bagimsiz, ayni repo

Read the full file on GitHub · 276 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. 3d ago First seen · 276 lines · 31 tokens per session scan A ab8086972664

Subscribe to this mod's changes

website-cloner is an agent published in the GitHub repository vibeeval/vibecosystem (530 stars, last pushed 29d ago), licensed MIT. It adds 31 tokens to every session and 2,203 once invoked, about $0.0002 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 agents, from other repositories

seo-specialist

Technical SEO, structured data, Core Web Vitals, meta tags, and Schema.org specialist. Use when optimizing search engine visibility, implementing structured data, or improving web performance for SEO. Trigger phrases: SEO, meta tags, Open Graph, Schema.org, structured data, sitemap, robots.txt, Core Web Vitals, LCP…

travisjneuman/.claude · 78 tokens

Frontend

React/Next.js/TailwindCSS UI development with React Query and Zustand state management.

intellegix/intellegix-code-agent-toolkit · 19 tokens

pwa-specialist

Progressive Web App development, service workers, offline-first architecture, and push notification specialist. Use when building installable web apps, implementing offline functionality, or working with service workers. Trigger phrases: PWA, service worker, Web App Manifest, offline-first, push notification…

travisjneuman/.claude · 76 tokens

browser-extension-developer

Chrome, Firefox, and cross-browser extension development specialist. Manifest V3, service workers, content scripts, and WebExtension APIs. Use when building browser extensions or migrating from MV2 to MV3. Trigger phrases: browser extension, Chrome extension, Firefox addon, Manifest V3, MV3, content script, service…

travisjneuman/.claude · 73 tokens

motion-designer

Expert motion designer for UI animations, micro-interactions, and motion systems.

travisjneuman/.claude · 18 tokens

clone-team-frontend-developer

The build machine of the clone-team. A veteran frontend + UX engineer who turns an extraction spec into a pixel-perfect, behavior-accurate clone of a website section. Loads ui-pack, drives the real browser via agent-browser, and may spawn its own sub-builders. Spawned by the clone-team Manager / build-loop Workflow.

Varalix-Digitech-Solutions/clone-team · 74 tokens