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

agent-awareness-plugin-github-watcher

v0.3.4

Published

GitHub repo watcher for agent-awareness — monitors issues, PRs, and comments

Readme

github-watcher

An agent-awareness provider plugin that monitors GitHub repositories for new issues, PRs, and comments from external users.

Features

  • Delta-only reporting — tracks state per repo, only reports new activity since last check
  • External-only filtering — ignore specific users like your own account or bots (ignoreAuthors)
  • Parallel fetching — checks all repos concurrently
  • Compact + detailed formats — compact for intervals, detailed for session start
  • MCP tools — on-demand check and repos tools for real-time queries
  • Zero token waste — silent when nothing new (onlyWhenNew: true)

Installation

npm install -g agent-awareness-plugin-github-watcher

The agent-awareness loader auto-discovers agent-awareness-plugin-* packages from both global and local node_modules/.

Configuration

Create ~/.config/agent-awareness/plugins.d/github-watcher.json:

{
  "enabled": true,
  "repos": [
    "owner/repo1",
    "owner/repo2"
  ],
  "ignoreAuthors": ["your-github-username", "dependabot[bot]"],
  "issueLimit": 50,
  "prLimit": 50,
  "commentLimit": 10,
  "onlyWhenNew": true,
  "triggers": {
    "session-start": "detailed",
    "interval:15m": "compact"
  }
}

Config options

| Option | Type | Default | Description | |--------|------|---------|-------------| | repos | string[] | [] | Repos to watch (owner/repo format) | | ignoreAuthors | string[] | [] | GitHub usernames to filter out | | issueLimit | number | 50 | Max issues fetched per repo per check | | prLimit | number | 50 | Max PRs fetched per repo per check | | commentLimit | number | 10 | Max comments per repo per check | | format | string | "auto" | Output format: compact, detailed, or auto | | onlyWhenNew | boolean | true | Only inject when there's new activity |

Trigger formats

Trigger values can be true/false or a format string ("compact" / "detailed"):

  • "session-start": "detailed" — full breakdown at session start
  • "interval:15m": "compact" — one-liner every 15 minutes

Output examples

Compact:

GitHub: edimuj/tokenlean: 1 new issue, 2 new comments | edimuj/claude-rig: 1 new PR

Detailed:

GitHub activity:
**edimuj/tokenlean**
  📋 #42 Bug: CLI crashes on empty input (by @contributor)
  💬 #38 @reviewer: Looks good to me! Just one small nit on line 42…
**edimuj/claude-rig**
  🔀 #15 Add fish shell support (by @community-dev)

MCP Tools

| Tool | Description | |------|-------------| | awareness_github_watcher_check | Check repos for new activity right now | | awareness_github_watcher_repos | List watched repos and last-check timestamps |

Requirements

  • gh CLI installed and authenticated
  • agent-awareness v0.4.0+

License

MIT