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

@heygaia/cli

v0.5.0

Published

CLI tool for setting up and managing GAIA

Downloads

294

Readme

@heygaia/cli

GAIA CLI

CLI tool for setting up and managing GAIA.

Requirements

  • Node.js 20+ and one package manager (npm, pnpm, or bun)
  • macOS or Linux (Windows via WSL2)
  • Docker installed and running
  • Git installed

The CLI checks prerequisites at startup and reports what is missing.

Installation

Install globally with your preferred package manager:

npm install -g @heygaia/cli
pnpm add -g @heygaia/cli
bun add -g @heygaia/cli

Commands

gaia init          # Full setup from scratch
gaia setup         # Configure existing repo
gaia start         # Start services in self-host mode
gaia dev           # Developer mode (Nx TUI)
gaia dev full      # Developer mode + workers (Nx TUI)
gaia logs          # Stream running logs
gaia stop          # Stop all services
gaia status        # Check service health
gaia --version     # Show CLI version
gaia --help        # Show all commands

gaia init

Interactive first-time setup.

| Flag | Description | |------|-------------| | --branch <name> | Clone a specific branch |

gaia setup

Reconfigure an existing GAIA repo:

cd /path/to/gaia
gaia setup

gaia start

Starts services for self-host mode.

gaia start

Optional flags:

  • --build rebuild Docker images before starting
  • --pull pull latest base images before starting

gaia dev / gaia dev full

Runs developer mode in foreground Nx TUI:

  • gaia dev -> mise dev
  • gaia dev full -> mise dev:full

gaia logs

Streams logs for currently running services.

gaia stop

Stops running GAIA services.

gaia status

Shows health and latency for core services.

Setup Modes

  • Self-Host (Docker) — everything in Docker
  • Developer (Local) — infra in Docker, app in local Nx TUI

Port Overrides

When port conflicts are detected, overrides are written to infra/docker/.env.

Development

# Build
cd packages/cli && pnpm run build

# Test the built CLI
./packages/cli/dist/index.js --help

# Run the test script
./packages/cli/test-cli.sh

Publishing

  1. Update version in package.json
  2. Build: pnpm run build
  3. Commit and tag: git tag cli-v<version>
  4. Push tag — GitHub Actions publishes to npm

License

MIT