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

@cole-labs/grabbit

v0.1.38

Published

CLI for converting browser interactions into API workflows

Readme

Grabbit CLI

Turn browser actions into reusable API workflows. Browse a site, capture what you do, and Grabbit generates stable cURL-ready workflows for automation, data extraction, and integrations.

Install

npm i -g @cole-labs/grabbit

Get started

1. Sign in (one-time)

grabbit auth

Your browser opens to pair. Sign in, then enter the code from the page into your terminal.

2. Open a site and interact

# Open a page (use --headed if you need to see the browser, e.g. for logins)
grabbit browse --session myrun open https://example.com

# Inspect and interact
grabbit browse --session myrun snapshot
grabbit browse --session myrun click @e3
grabbit browse --session myrun fill @e5 "search term"

3. Save and generate

grabbit save --session myrun "Describe what you want. Example: Extract product titles. Output: { titles: string[] }"

4. Check the result

grabbit check <task-id>

When it’s done, you’ll see inputs, outputs, and a cURL example.

Prompt tips

Be specific. Include real examples you saw on the page and the output shape you expect.

  • Static data: "Extract blog titles, e.g. 'Cooking for Beginners'. Output: { titles: string[] }"
  • Interactive flows: Describe each step with example data (name, address, etc.)
  • Generalize: Even for one value, phrase it so the workflow works for many cases

Browser commands

Run grabbit browse --help for the full list. Common commands:

  • Navigate: open, back, forward, reload, close
  • Inspect: snapshot, get text, get html, get value, is visible
  • Interact: click, fill, type, press, select, hover, focus
  • Wait: wait <ms> or wait <selector>
  • Debug: screenshot, console, errors

Use workflows in AI agents

To add Grabbit as a skill for AI agents (e.g. Cursor, Claude):

grabbit skill install

Troubleshooting

  • Not authenticated: Run grabbit auth, then retry.
  • No requests recorded: Reload the page, interact with it, then run save again.
  • Always use --session <name> so captures stay separate.

Credits

Grabbit’s browser automation is powered by a fork of agent-browser, licensed under the Apache License 2.0.

License

MIT