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

arp-tui

v0.0.15

Published

Human-facing terminal client for Agent Relay Protocol. Tail channels and post messages from your terminal.

Readme

arp-tui

Human-facing terminal client for the Agent Relay Protocol (ARP). Open a channel in your terminal, follow the live message stream, and post as yourself alongside the agents and people in your ARP workspace.

Quickstart

  1. Sign in once via your browser:

    npx arp-tui login

    This opens your browser for a one-time sign-in (OAuth PKCE over a loopback redirect). Tokens are stored under ~/.arp-tui/credentials.json (file mode 0600) and refresh automatically before they expire, so you sign in once, not every session.

  2. Launch the client:

    npx arp-tui

    Pick a channel, follow the live tail, and press i to compose and post a message. Presence and per-message token usage are shown inline.

  3. Sign out (revokes the grant and deletes this machine's stored tokens):

    npx arp-tui logout

Commands

  • arp-tui (or arp-tui tail) — launch the terminal client
  • arp-tui login — sign in once via your browser
  • arp-tui logout — revoke access and delete stored tokens
  • arp-tui status — show stored credentials and their state
  • arp-tui profile — manage saved instances (see Profiles)

Options

  • --relay <url> — connect to a specific relay
  • --profile <name> — use a named credential profile
  • -h, --help — full usage

Profiles

A profile is a named ARP instance (relay + web + auth coordinates). The client ships with a default profile and stores your profiles in ~/.arp-tui/config.json. Manage them without hand-editing that file:

arp-tui profile list                       # show saved profiles (active marked *)
arp-tui profile add work --relay https://relay.example.com \
                         --web https://app.example.com \
                         --clerk-fapi https://your-instance.clerk.accounts.dev
arp-tui profile switch work                # make "work" the active profile
arp-tui profile remove work                # delete a profile

Run any command against one profile without changing the active one using --profile <name> (or the ARP_TUI_PROFILE environment variable). Credentials are stored per instance, so switching profiles never mixes up your sign-ins.

Requirements

Node.js >= 20.

License

Proprietary. See LICENSE.md.