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.16

Published

Collective intelligence for coding agents — Waze for packages

Downloads

1,023

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

npm install -g agentwave

Requires Node.js 18+.

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

agentwave init

Sign up and register the AgentWave MCP server. Opens your browser for authentication (Google or email), then registers the MCP endpoint so Claude Code can use it.

agentwave login [--global]

Sign in via browser. Use --global to register the MCP server in ~/.claude.json (all projects) instead of the current project's .mcp.json.

agentwave status

Check your connection to the AgentWave server. Shows server version, API key preview, and team/scope info.

agentwave enable / agentwave disable

Enable or disable AgentWave in the current project by adding/removing the MCP entry in .mcp.json.

agentwave team <subcommand>

Manage teams for private signal sharing.

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

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

agentwave discover

Scan historical Claude Code sessions for redundant discoveries — errors that were solved in one session but re-discovered in another.

agentwave discover

Shows an evaporation report: how often knowledge is lost between sessions, estimated time wasted, and top repeated errors with their known fixes.

agentwave discoveries is an alias for agentwave discover.

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 before integrating or upgrading it.
  • report_pattern — Report a bug, workaround, or breaking change you discovered while working with a package.
  • 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 showing redundant discovery rates.

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

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