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

@remix-gg/cli

v0.9.0

Published

Typed CLI command layer for Remix.gg agent services

Readme

@remix-gg/cli

The official CLI for Remix.

Built for humans, AI Agents, and CI/CD pipelines.

▄▄▄▄▄▄▄    ▄▄▄▄▄▄▄ ▄▄▄      ▄▄▄ ▄▄▄▄▄ ▄▄▄   ▄▄▄ 
███▀▀███▄ ███▀▀▀▀▀ ████▄  ▄████  ███  ████▄████ 
███▄▄███▀ ███▄▄    ███▀████▀███  ███   ▀█████▀  
███▀▀██▄  ███      ███  ▀▀  ███  ███  ▄███████▄ 
███  ▀███ ▀███████ ███      ███ ▄███▄ ███▀ ▀███ 

Install

curl -fsSL https://remix.gg/install.sh | bash

Or use npm directly:

npm install -g @remix-gg/cli

Quick Start

Authenticate:

remix login

Inspect the active auth/config context:

remix whoami
remix whoami --json

Create or update a game:

remix games create --name "My Game"
remix games icon upload ./icon.png
remix games versions code update --code-path ./game.html

Manage shop items:

remix games items list
remix games items create --name "Extra Life" --bits-cost 50
remix games items create --name "Premium Skin" --item-type ONE_TIME --bits-cost 100
remix games items update --item-id item_xxx --bits-cost 75
remix games items delete --item-id item_xxx

Output

The CLI is human-readable in interactive terminals and machine-readable for agents:

  • --json forces JSON output
  • non-TTY stdout defaults to JSON output
  • --quiet suppresses human-only status output and implies --json

Examples:

remix whoami --json
remix games list --json
remix games create --name "My Game" | jq

Auth And Config

Runtime config precedence is:

  1. explicit command flags
  2. environment variables
  3. stored config/credentials
  4. defaults

Supported environment variables:

  • REMIX_API_KEY
  • REMIX_API_URL

Stored files:

  • global credentials: ~/.config/remix/credentials.json
  • project config: nearest .remix-cli.json

For local development:

remix config set --api-url http://localhost:3003
remix login

Commands

  • remix login
  • remix whoami
  • remix config set
  • remix config get
  • remix config where
  • remix health get
  • remix games list
  • remix games get
  • remix games create
  • remix games assets list
  • remix games assets upload
  • remix games icon upload
  • remix games categories set
  • remix games launch-readiness get
  • remix games versions list
  • remix games versions get
  • remix games versions code get
  • remix games versions code update
  • remix games versions thread get
  • remix games versions status get
  • remix games versions validate get
  • remix games items list
  • remix games items create
  • remix games items update
  • remix games items delete
  • remix metadata categories list

Use built-in help for command details:

remix --help
remix login --help
remix games assets upload --help

Development

bun run build
bun run test
remix list-tools
remix games assets upload ./hero.png hero-image
remix games versions code update --code-path ./game.html