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

@solo-level/tui

v0.1.4

Published

Terminal UI for Solo Level XP, quests, challenges, seasons, and workspace activity tracking.

Readme

Solo Level TUI

Terminal UI for Solo Level XP, quests, challenges, seasons, and workspace activity tracking.

Beta Tester Install

Beta testers do not need this repository or any workspace setup. They do need Bun, because OpenTUI uses native FFI that does not run under normal Node.js.

Install Bun first:

curl -fsSL https://bun.sh/install | bash

Restart the terminal, then confirm:

bun --version

Run the TUI from the project directory you want Solo Level to track:

cd path/to/your/project
npx @solo-level/tui

Or install it globally once:

npm install -g @solo-level/tui
cd path/to/your/project
solo-level

After the TUI opens:

  1. Sign in.
  2. Confirm the footer says Tracking workspace: <project>.
  3. Make a real code change in that project.
  4. Wait for the tracker to group the activity and award XP.

If tracking fails, report your OS, terminal app, Node version, project path, and the exact error shown in the footer.

Configuration And Security

The published TUI includes the production Supabase URL and Supabase anon key. That is intentional: the anon key is a public client key, protected by Supabase row-level security and user auth. Testers do not need a .env file.

Never bake private keys into the TUI package. These must stay server-side only:

  • Supabase service role keys
  • Polar access tokens and webhook secrets
  • AI provider API keys
  • Tauri signing keys

Local .env files are only for maintainers who need to override the public Supabase project or website URL while developing.

Workspace XP Tracking

After sign-in, the TUI watches the current working directory and sends meaningful coding activity through the shared @solo-level/core workspace tracker. The tracker ignores noisy generated files, groups edits into activity sessions, and awards XP through the same XP pipeline used by the desktop app.

The footer shows the tracking state:

  • Tracking workspace: <project> means the current directory is being watched.
  • Workspace tracking starts after sign in means the user still needs to authenticate.
  • Workspace tracking unavailable: <reason> means the terminal/runtime could not watch the directory.

Maintainer Local Development

This section is only for maintainers working from the Solo Level repo. Beta testers should not run these commands.

Install dependencies from the repository root, then run the TUI workspace:

npm install
npm --workspace apps/solo-level-tui run dev

Build and verify the publish package:

npm --workspace apps/solo-level-tui run build
npm --workspace apps/solo-level-tui run test
npm pack --workspace apps/solo-level-tui --dry-run

Maintainer Publishing

This section is only for maintainers publishing the package to NPM.

The TUI is intended to ship through NPM so testers can run it from any terminal. Publish the shared core package first, then publish the TUI:

npm publish --workspace packages/core --access public
npm publish --workspace apps/solo-level-tui --access public

After publishing, testers can use:

npx @solo-level/tui