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

@kaiwlsn/muster

v0.1.2

Published

TUI for managing your issues across the land of GitHub.

Readme

muster

TUI for managing your issues across the land of GitHub.

muster screenshot

muster issue creator

What it does

muster is a keyboard-driven GitHub issue client. It starts with issues involving your account, and lets you open individual repositories in tabs when you need to focus on one project.

  • Browse issues involving you across repositories
  • Add owned repositories or any accessible owner/repo as tabs
  • Switch between open, closed, and all issues
  • Search by title, author, issue number, or label
  • Read issue descriptions, labels, metadata, and comments
  • Write comments without leaving the TUI
  • Create issues with a description and labels
  • Create missing labels while creating an issue
  • Close and reopen issues
  • Navigate entirely from the keyboard, with an expanded reading view

GitHub Access

muster uses the GitHub CLI for authentication so it does not manage or store GitHub tokens directly.

Requirements:

  • Install gh from https://cli.github.com/.
  • Authenticate with gh auth login --hostname github.com --web --scopes repo,read:org.

This project is still early, so expect bugs and inconsistencies.

Install the prebuilt muster command from npm:

npm install --global @kaiwlsn/muster
muster

Prebuilt binaries support macOS and glibc-based Linux on arm64 and x64. Bun is embedded in the binary and is not required at runtime. The npm launcher requires Node.js 20 or newer.

For development from this checkout, install Bun and run bun run start. You can also use npm link; the development launcher falls back to the Bun source entrypoint.

License and Source

muster is licensed under GPL-3.0-only. Corresponding source for each published binary is available from the matching version tag in this repository.

Acknowledgments

The GitHub CLI authentication approach is based on Kit Langton's ghui GitHub authentication module.

Local Reference Repositories

This project vendors external source repositories under repos/ using squashed git subtrees so coding agents can inspect real implementation and usage patterns locally.

  • repos/effect: Effect source and tests.
  • repos/opentui: OpenTUI source, docs, and examples.

These directories are reference material. Application code should depend on published packages, not import from repos/.

Updating References

git subtree pull --prefix=repos/effect https://github.com/Effect-TS/effect.git main --squash
git subtree pull --prefix=repos/opentui https://github.com/anomalyco/opentui.git main --squash