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

gooseworks

v0.1.2

Published

GooseWorks CLI — give your coding agent real data tools

Readme

GooseWorks

Give your coding agent (Claude Code, Cursor) access to 100+ data tools — scrape Twitter/Reddit/LinkedIn, find emails, enrich companies, research competitors — with one install.

Quick Start

npx gooseworks install --claude

This does three things:

  1. Opens browser for Google sign-in
  2. Installs the GooseWorks skill into Claude Code
  3. You're ready — ask Claude to "scrape reddit", "find leads", "research competitors"

Commands

install

Full setup: login + install skill + configure your coding agent.

npx gooseworks install --claude    # Configure for Claude Code
npx gooseworks install --cursor    # Configure for Cursor
npx gooseworks install --all       # Configure all detected agents

What it does:

  • Runs login if you don't have credentials yet
  • Writes the GooseWorks master skill to ~/.agents/skills/gooseworks-master/SKILL.md
  • Creates symlinks in ~/.claude/skills/ (Claude) or writes MCP config (Cursor)

login

Authenticate with GooseWorks via Google OAuth.

npx gooseworks login

Flow:

  1. Starts a temporary HTTP server on a random local port
  2. Opens your browser to the GooseWorks sign-in page
  3. You sign in with Google
  4. Token saved to ~/.gooseworks/credentials.json

Timeout: 120 seconds. If the browser doesn't complete, re-run the command.

logout

Clear saved credentials.

npx gooseworks logout

Deletes ~/.gooseworks/credentials.json.

search

Search the GooseWorks skill catalog.

npx gooseworks search "reddit scraping"
npx gooseworks search "find emails"
npx gooseworks search "competitor research"

credits

Check your credit balance.

npx gooseworks credits

Output:

Credits: 847 available (500 subscription + 347 purchased)

update

Re-fetch the latest skill without re-authenticating.

npx gooseworks update

How It Works

  1. Install — authenticates you and installs a master skill file into your coding agent
  2. Ask your agent anything — "scrape r/ClaudeAI", "find CTOs at AI startups", "research competitor pricing"
  3. Agent finds the right skill — searches the GooseWorks catalog of 100+ skills
  4. Runs it — downloads and executes the skill's Python scripts, which call GooseWorks APIs
  5. You get results — structured data returned directly in your coding agent

What's Included

  • Twitter/X scraping
  • Reddit scraping
  • LinkedIn profile & post scraping
  • Company research & enrichment
  • Contact/email finding (Apollo)
  • Lead qualification & scoring
  • Competitor intelligence
  • Job posting monitoring
  • SEO analysis
  • Google & Meta ad scraping
  • YouTube transcript extraction
  • And 90+ more skills

File Layout

Credentials

~/.gooseworks/
└── credentials.json      # API key, email, agent_id, api_base

Skills

~/.agents/skills/
└── gooseworks-master/
    └── SKILL.md          # Master skill — teaches your agent to use GooseWorks

Claude Code Symlinks

~/.claude/skills/
└── gooseworks-master → ~/.agents/skills/gooseworks-master

Pricing

New users get 200 free credits. Each skill run costs 1-10 credits depending on the data source. Check your balance with npx gooseworks credits.

Need more? Visit gooseworks.ai/settings to add credits.

Requirements

  • Node.js 18+
  • Python 3 (for running skill scripts)
  • Claude Code or Cursor

Links