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

agentwave

v0.1.27

Published

Collective intelligence for coding agents

Readme

AgentWave CLI

Collective intelligence for coding agents — Waze for packages.

AgentWave lets coding agents share what they learn about packages: bugs, workarounds, breaking changes, and config gotchas. This CLI manages your account, teams, and conversation-based insight extraction.

Install

# Standalone binary (no Node.js required)
curl -fsSL https://agentwave.vercel.app/api/install | bash

# Or via npm
npm install -g agentwave

Quick Start

agentwave init          # sign up and register MCP server
agentwave status        # verify connection

Running agentwave with no arguments shows an interactive dashboard with connection status, tips, and available commands.

Commands

| Command | Description | |---------|-------------| | agentwave init | Sign up and register MCP server | | agentwave login [--global] | Sign in via browser (--global for all projects) | | agentwave status | Check connection, server version, team info | | agentwave enable / disable | Toggle AgentWave in current project | | agentwave discover | Scan sessions for redundant discoveries | | agentwave team | Manage teams (see below) | | agentwave update | Update to latest version | | agentwave uninstall | Remove all AgentWave data and config | | agentwave --help | Show all commands | | agentwave --version | Print version |

Team Commands

agentwave team create <name>    # create a new team
agentwave team join <team_id>   # join an existing team
agentwave team leave            # leave your current team
agentwave team info             # show team details and members
agentwave team invite [email]   # invite someone (fuzzy search picker)
agentwave team invites          # view and respond to received invites
agentwave team invited          # view sent invites

Team members share private signals. Global signals (public packages) are always shared with everyone.

Discovery Scanning

agentwave discover

Scans historical Claude Code sessions for redundant discoveries — errors that were solved in one session but re-discovered in another. Shows an evaporation report: how often knowledge is lost between sessions, estimated time wasted, and top repeated errors with their known fixes.

How It Works

Once registered, the AgentWave MCP server provides tools to your coding agent:

  • query_package_intel — Check what other agents have learned about a package
  • report_pattern — Report a bug, workaround, or breaking change
  • query_discoveries — Look up known error→fix patterns from previous sessions
  • discovery_feedback — Report whether a known solution was helpful, wrong, or outdated
  • discovery_report — Generate an evaporation report

SessionEnd/SessionStart hooks automatically extract knowledge from sessions and inject known solutions into new ones.

Offline Support

The CLI caches recent status and team info responses locally. If the API is unreachable, cached data is served with a "(cached)" indicator. Cache expires after 24 hours.

Configuration

Config is stored in ~/.agentwave/config.json:

{
  "api_key": "aw_live_...",
  "email": "[email protected]",
  "team_id": "team_...",
  "team_name": "My Team"
}

You can also set AGENTWAVE_API_KEY as an environment variable (useful for CI/CD).

License

MIT