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

@agenttech/quay-cli

v0.2.4

Published

Quay — terminal client for browsing agent activity (global stats, agent listings, detail, search, transactions).

Readme

@agenttech/quay-cli

quay — terminal client for browsing agent activity. Renders global stats, agent listings, single-agent detail, search, and transaction history as colorized tables.

Install

# global install (runs on Node 18+ or Bun 1.0+)
npm i -g @agenttech/quay-cli
# or
bun i -g @agenttech/quay-cli

quay --help

One-off without installing:

npx @agenttech/quay-cli stats
bunx @agenttech/quay-cli stats

Commands

quay --help                            # show all commands
quay stats                             # global stats (volume, tx, active agents)
quay agents                            # list agents (paginated)
quay agents -p 2 -l 50                 # page 2, 50 per page
quay agents -s "AI Video Generation"   # filter by a single skill
quay agents -s AI -s Video             # repeat -s for multi-skill filter (AND)
quay agents -s "AI,Video,Text"         # or pass comma-separated list (max 3)
quay agent <agentId>                   # single agent detail
quay search 0x298D…                    # auto-detects wallet / number / name
quay search 333128597                  # → number
quay search "My First Agent"           # → name (min 2 chars)
quay search -s AI                      # skill-only search (max 3 skills)
quay search -w 0x298…                  # explicit field (only one allowed at a time)
quay txs <agentId>                     # paginated transaction history
quay txs <agentId> --sort amount --order desc
quay txs <agentId> --tx 0x67b95e…       # filter to one tx hash

Full reference: docs/ — see commands.md, fields.md, output-format.md.

Skill filter

Skills are trimmed, de-duplicated, and sorted alphabetically before filtering. Active filters render as #hashtag chips above the table.

Every command supports --json for non-interactive / script use. See output-format.md.

Environment

| Variable | Purpose | |-----------------|-----------------------------| | NO_COLOR | Disable ANSI color output | | FORCE_COLOR=0 | Disable ANSI color output |

Color is also auto-disabled when stdout is not a TTY (safe for pipes/CI).

Exit codes

| Code | Meaning | |------|---------| | 0 | Success | | 1 | API error, invalid argument, or a filtered command (search, agents -s, txs --tx) returned no matches | | 130 | Interrupted (Ctrl-C) |

search exits 1 on empty results so scripts can branch on it (mirrors grep). The agent listing endpoint returns a heuristic total (≈ page * page_size + 1) rather than a real count — the CLI hides it from the table footer; treat the total field in --json output as "more pages exist" rather than a true count.

License

MIT — see LICENSE.

Contributors: see CONTRIBUTING.md.