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

vibesurfer

v0.1.28

Published

A browser for LLMs, not humans. Real WebKit over a line protocol built for agents. Try it with npx vibesurfer.

Readme

vibesurfer

A browser for LLMs, not humans. It drives real WebKit over a line-oriented wire protocol built for agents in loops.

Try it in one line, no install:

npx vibesurfer session-open
npx vibesurfer open https://example.com

The first run downloads the prebuilt binary for your platform, verifies its checksum, and caches it under ~/.vibesurfer/bin/. Every later run is instant and offline.

What it is

vibesurfer drives a real browser engine (WKWebView on macOS, WebKitGTK 6 on Linux, WebView2 on Windows) over a tiny Unix-socket wire protocol. It is designed for an agent stuck in a while loop, not a human staring at DevTools:

  • Accessibility-tree snapshots, not CSS selectors. Each element is a stable integer ref you act on ten turns later without re-reading the page. Tree-deltas on repeat views keep token cost low.
  • Trusted native input. Clicks and typing dispatch through real OS input events (isTrusted = true), so anti-bot systems can't tell them from a human.
  • Optimistic concurrency via state tokens, durable sessions in SQLite (they survive daemon restarts), and per-origin encrypted auth state.
  • MCP server built in (vs mcp). Wire it into Claude, Claude Code, Cursor, Codex, Gemini, Google Antigravity, and more with vs skill install.

Common commands

npx vibesurfer --help            # every primitive
npx vibesurfer session-open      # start a session (auto-spawns the daemon)
npx vibesurfer open <url>        # open a page
npx vibesurfer view <page>       # snapshot the accessibility tree
npx vibesurfer act <page> <ref> click --token=<t>
npx vibesurfer skill install     # install into every detected AI agent

Prefer a permanent install? brew install vibesurfer (macOS/Linux), cargo install vibesurfer, or the other options in the repo. The npx package pins its matching release, so npx vibesurfer@<version> runs exactly that build.

Links

  • Repository & docs: https://github.com/frane/vibesurfer
  • crates.io: https://crates.io/crates/vibesurfer
  • License: Apache-2.0