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

create-scout

v0.4.6

Published

Set up scout — browser automation + recorded QA sessions. Run `npm create scout`.

Downloads

322

Readme

create-scout

The guided setup wizard for Scout — an AI-agent QA toolkit that drives real browsers, records QA sessions (Playwright trace, video, network HAR, console), and renders self-contained verification reports.

npm license

One command to get Scout and its browser runtime set up — no flags to remember. Every step just shells out to the same published commands you could run by hand, so there's no magic and nothing bespoke to uninstall. Agent integration (skills, Claude Code plugin) is deliberately left to you: after setup the wizard prints the exact commands to run.

Use

npm create scout
# or:  npm init scout  ·  pnpm create scout  ·  yarn create scout

You'll get a checklist (space toggles, enter confirms). Recommended items are pre-selected:

| Step | Default | What it runs | | --- | --- | --- | | Install the scout command globally | ✓ | npm i -g @clipboard-health/scout-cli | | Install the browser runtime (Chromium) | ✓ | scout install | | Also install scout-browser globally | — | npm i -g @clipboard-health/scout-browser | | Also install the scout-viewer viewer globally | — | npm i -g @clipboard-health/scout-ui |

Installing the CLIs globally puts scout, scout-browser, and scout-viewer on your PATH so day-to-day use drops the npx prefix. The wizard never installs the plugins itself — once setup completes it prints the commands (Claude Code /plugin …, Cursor / Codex marketplace) so each agent's own mechanism does the work.

Non-interactive

In a pipe or CI (no TTY), the wizard prints the exact commands to run instead of prompting — safe to inspect before executing.

After setup

Add the agent integration yourself (one-time):

# Claude Code: /plugin marketplace add ClipboardHealth/scout  then  /plugin install scout@scout-marketplace

Then record a session:

scout session start --name "checkout"   # start a recorded session (prints an id)
scout run ./step.js --session <id> --step "open"
scout session end <id>                  # -> ~/.scout/sessions/<id>/report.html
scout-viewer                            # browse recorded sessions

Using a coding agent? Try /scout:verify (plan QA for your changes) or /scout:session (record a flow) in Claude Code / Cursor / Codex. See examples/ in the repo for runnable demos.

Related packages

MIT · source