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

@open-hax/eta-mu-github

v0.1.1

Published

Pi-based GitHub automation bot and review gate for PRs, issues, and mentions.

Readme

eta-mu-github

Pi-based GitHub automation for PRs, issues, review coordination, and autonomous PR fixes.

Goals

  • Give the GitHub automation surface a stable bot identity: eta-mu
  • Trigger on PR changes, issue creation, and explicit mentions
  • Debounce noisy event bursts with GitHub Actions concurrency groups
  • Interact with CodeRabbit, other review agents, and humans via issue/PR comments
  • Provide an authoritative merge-status check for unresolved review threads
  • Auto-fix same-repo PR branches when reviews or mentions ask for concrete changes

What is here

  • eta-mu review-gate — inspects unresolved review threads and can publish an app-owned check run (default name: eta-mu-review-gate)
  • eta-mu run-event — classifies an event, builds GitHub context, runs a pi session, and either replies, upserts state, or autofixes a PR branch
  • workflow templates under templates/workflows/
  • GitHub App setup notes under docs/github-app.md

CLI

pnpm dev review-gate --repo open-hax/voxx --pr 1 --publish-check
pnpm dev run-event --repo open-hax/voxx --event-name issue_comment --event-path /tmp/event.json --cwd /path/to/repo

Autofix behavior

Eta-mu can push directly to the PR head branch when:

  • the event targets a pull request
  • eta-mu decides the request should be handled as mode=autofix
  • the PR head repository is the same repository where eta-mu is installed
  • the GitHub token has contents: write

For fork PRs, eta-mu currently comments with a skip reason instead of pushing into the fork.

GitHub workflow model

Each target repository keeps a tiny local wrapper workflow that:

  1. checks out the target repo
  2. checks out open-hax/eta-mu
  3. installs packages/eta-mu-github dependencies from the monorepo
  4. runs either review-gate or run-event

This preserves stable, repo-local triggers while keeping the logic centralized in the eta-mu monorepo.

Promotion model

The eta-mu monorepo itself should move through the same branch contract as other long-lived automation surfaces:

  • feature branch -> PR into staging
  • push to staging runs post-merge CI
  • PR from staging into main
  • push to main is the production logic ref consumed by target repositories

Repo-local wrapper workflows can choose a staged eta-mu ref for staging-bound events via:

  • ETA_MU_REF_STAGING
  • ETA_MU_REF_MAIN

For compatibility during migration, the wrappers still accept the legacy ETA_MU_GITHUB_REF_* variables as fallbacks.

Default behavior is:

  • staging-bound events -> eta-mu@staging
  • main/other events -> eta-mu@main

Verification

pnpm test
pnpm build