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

@pyxis-labs/cli

v0.1.0

Published

Pyxis on the command line — run Web3 research from your terminal. Hits usepyxis.com.

Downloads

505

Readme

@pyxis-labs/cli

npm version license CI

Pyxis on the command line. Run Web3 research briefings from your terminal — same 5-agent pipeline as usepyxis.com.

Install

npm i -g @pyxis-labs/cli
# or run without install
npx @pyxis-labs/cli health

Requires Node.js ≥ 18.17.

Quickstart

pyxis login                           # opens browser, sign in with wallet
pyxis research "ondo finance Q2"      # 5-agent briefing in your terminal
pyxis status                          # check session
pyxis logout                          # clear local credentials

Commands

| Command | What it does | |---|---| | pyxis login | Browser-callback sign-in. Token saved to ~/.config/pyxis/credentials (mode 0600). Valid 24h. | | pyxis logout | Removes local credentials. (Token remains valid server-side until natural expiry.) | | pyxis status | Shows current wallet + expiry. Exit 1 if not logged in. | | pyxis research <topic> | Runs the 5-agent research pipeline against your topic. 30-90s typical. | | pyxis health | Pings /api/health — confirms API + DB are up. | | pyxis help, --version | Self-explanatory. |

Configuration

| Env var | Default | Purpose | |---|---|---| | PYXIS_API_BASE | https://usepyxis.com | Override for self-hosted or staging | | NO_COLOR | unset | When 1, disable all ANSI colors and the banner | | PYXIS_NO_BANNER | unset | When 1, suppress only the login banner (keep colors) | | XDG_CONFIG_HOME | ~/.config | POSIX credentials directory base |

Exit codes

| Code | Meaning | |---|---| | 0 | Success | | 1 | User error (not logged in, invalid topic, token expired) | | 2 | Server / network error (5xx, timeout, rate-limited) | | 130 | Interrupted (Ctrl+C) |

Development

git clone [email protected]:pyxis-app/cli.git
cd cli
npm install
npm test                       # vitest
npm run dev -- health          # run from source via tsx
npm run build                  # emit dist/
node dist/index.js login       # run built artifact

Related

| Project | What it is | |---|---| | usepyxis.com | Live web app — same 5-agent pipeline, rendered briefings | | docs.usepyxis.com | Docs site — methodology, sources, FAQ | | pyxis-app/pyxis | Main app source (AGPL-3.0) | | @pyxis-labs/web3-sources | Sibling: typed TS clients for the 13 data sources Pyxis pulls from | | @pyxisbase on X | Project updates, build-in-public |

License

MIT © 2026 Pyxis Authors. App itself (pyxis-app/pyxis) is AGPL-3.0 — this CLI is intentionally MIT so it can be embedded freely.