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

real-prototypes-plugin

v0.0.2

Published

Standalone Claude Code plugin for capturing web platform design and generating pixel-perfect Next.js prototypes.

Readme

Real Prototypes - Claude Code Plugin

Capture any web platform's visual design and generate pixel-perfect Next.js prototypes.

Installation

Option 1: Install from the Claude Code marketplace

# Add this repo as a marketplace
/plugin marketplace add kaidhar/real-prototypes-plugin

# Install the plugin from that marketplace
/plugin install real-prototypes@kaidhar-plugins

Option 2: Install from npm

# Install into your project
npm install --save-dev real-prototypes-plugin

# Run Claude Code with the installed plugin
claude --plugin-dir ./node_modules/real-prototypes-plugin

Option 3: Local Plugin Directory

# Clone this repo and run Claude Code against it directly
claude --plugin-dir /path/to/real-prototypes-plugin

Option 4: Pack the Plugin Manually

# Create a tarball you can move or publish elsewhere
npm pack

This package is self-contained. It includes the plugin manifest, marketplace metadata, slash commands, and embedded skills under skills/.

Commands

Once installed as a plugin, the following slash commands are available:

| Command | Description | |---------|-------------| | /real-prototypes:quickstart | Full pipeline: capture, extract, scaffold, serve | | /real-prototypes:capture | Capture a platform's visual design | | /real-prototypes:serve | Start dev server for a prototype | | /real-prototypes:validate | Run validation gates | | /real-prototypes:plan | Generate an implementation plan | | /real-prototypes:list | List all projects | | /real-prototypes:help | Show available commands |

Quick Start

Install the plugin through the marketplace or start Claude Code with the plugin directory, then tell Claude what you want:

"I want to prototype a chatbot for salesforce.com"

Claude will automatically:

  1. Capture the platform's design
  2. Extract colors, fonts, and components
  3. Generate a Next.js prototype
  4. Start a dev server
  5. Open it in your browser

Configuration

Add platform credentials to your project's CLAUDE.md:

## Platform Credentials

PLATFORM_URL=https://your-platform.com
[email protected]
PLATFORM_PASSWORD=your-password

What's Included

Skills (Auto-invoked)

  • real-prototypes - Core skill for platform capture and prototype generation
  • agent-browser - Browser automation via Vercel's agent-browser

Slash Commands (User-invoked)

Seven commands for common operations (see table above)

Tech Stack

Generated prototypes use:

  • Next.js 14+ (App Router)
  • Tailwind CSS
  • shadcn/ui components
  • TypeScript

Requirements

  • Claude Code 1.0.33+
  • Node.js 18+
  • agent-browser available globally for browser automation

Publishing

# Verify the package contents
npm pack --dry-run

# Authenticate once per machine
npm login

# Publish the current version
npm publish --access public

Increase the version in package.json before each new release.

Marketplace Metadata

This repo includes .claude-plugin/marketplace.json so Claude Code can use the GitHub repository as a plugin marketplace source.

License

Apache-2.0