npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@veyralabs/webcloner

v3.0.0

Published

WebCloner — Website visual cloning skill for Claude Code. Clone landing pages, marketing sites, portfolios, and ecommerce storefronts into pixel-accurate Next.js replicas.

Readme

webcloner

Clone any landing page, marketing site, portfolio, or ecommerce storefront into a pixel-accurate Next.js replica. Works with Claude Code and other AI coding agents.

npx @veyralabs/skills install webcloner

How it works

Most cloning attempts fail at 80% because they guess at interactions, miss assets, or start writing components before fully understanding what they're building. This skill forces the right order.

Six phases, each with a clear goal:

Phase 1 - Recon. Run extract.py against the target URL. Scrapling loads the full page, scrolls to trigger lazy loads, and extracts the DOM structure, computed CSS for every visible element, asset inventory, color palette, typography system, animation library signatures, and tech stack. Output is a single JSON manifest.

Phase 2 - Foundation. Set up the Next.js project and apply global tokens from the manifest before touching any component: fonts, color variables, typography scale, animation libraries, downloaded assets converted to WebP.

Phase 3 - Spec. Generate a machine-readable spec file for each section of the page. Every spec includes the DOM structure, exact computed CSS values, responsive behavior at four breakpoints, YAML-formatted interaction definitions, and verbatim text content. No building happens until all specs are complete and reviewed.

Phase 4 - Parallel build. Each section gets its own git worktree and builder agent. Agents work simultaneously and build exactly what the spec describes. After each merge, npm run build runs to catch TypeScript errors before they compound.

Phase 5 - Assembly. Wire all section components into page.tsx in DOM order. Implement page-level behaviors: sticky header, smooth scroll provider, GSAP context, scroll progress indicators.

Phase 6 - Visual QA. compare.mjs screenshots the original and the clone at 1440px and 390px. Side-by-side comparison, size diff report, manual checklist for typography, spacing, interactions, and responsive behavior.


What it handles

Landing pages, marketing sites, portfolios, agency sites, ecommerce product listings and storefronts.

Not designed for SaaS dashboards, admin panels, auth flows, real-time data, or checkout flows. If the target is out of scope, the skill says so before starting rather than producing a broken half-clone.


Prerequisites

pip install scrapling
scrapling install

node --version  # 18+

Install

npx @veyralabs/skills install webcloner

Manual install - copy to your agent's skills directory:

| Agent | Path | |-------|------| | Claude Code | .claude/skills/ | | Cursor | .cursor/skills/ | | Windsurf | .windsurf/skills/ | | Gemini CLI | .gemini/skills/ |


Usage

Once installed, describe what you want:

Clone this landing page: https://example.com
Rebuild this design in Next.js: https://example.com
I want my site to look like this: https://example.com

The skill activates automatically. It will ask for your input at two points: after the recon summary (confirm scope and interaction model decisions) and after visual QA (approve or request fixes).


What's included

SKILL.md                         skill definition loaded by Claude Code
scripts/
  extract.py                     Scrapling extractor - DOM, CSS, assets, animations
  download-assets.mjs            image/video/font downloader with WebP conversion
  compare.mjs                    screenshot original vs clone at desktop and mobile
references/
  animation-playbook.md          GSAP, Framer Motion, Lenis, AOS detection and recreation
  behavior-spec-format.md        YAML schema for interaction specs with examples
  component-detection.md         boundary detection algorithm and complexity scoring
  stack-presets.md               output configs for Astro, Nuxt, SvelteKit, Vite

Part of VeyraSkills

Part of VeyraSkills, a collection of Claude Code skills for founders, developers, and builders.


License

MIT. Built by VeyraLabs.