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

@pilots/cli

v0.1.2

Published

CLI for managing persistent pilot microVMs

Readme

@pilots/cli

CLI for managing pilots — secure, persistent, hardware-isolated Linux microVMs built for AI agents. Boot in milliseconds, checkpoint instantly, restore on demand, scale to thousands.

Learn more at pilots.run.

Install

npm install -g @pilots/cli

Or run without installing:

npx @pilots/cli login

Requires Node.js 18+.

Quick start

pilot login                      # authenticate via device flow
pilot create mybox               # spin up a pilot
pilot console mybox              # open an interactive shell
pilot exec mybox -- ls /         # run a one-shot command
pilot url mybox                  # get the pilot's public URL
pilot list                       # list your pilots
pilot destroy mybox              # tear it down

Authentication

Interactive (recommended):

pilot login

Opens a verification URL — enter the code on the dashboard, the CLI picks up the token automatically.

Direct token (CI/CD):

pilot auth setup --token <token>

Tokens are created at https://app.pilots.run/dashboard/tokens.

Credentials are stored in ~/.config/pilot/config.json.

Commands

| Command | What it does | |---|---| | pilot login | Device-flow authentication | | pilot auth setup --token <t> | Set token directly (CI/CD) | | pilot auth status | Show current auth status | | pilot auth logout | Clear stored credentials | | pilot create <name> [opts] | Create a pilot (--location, --size, --storage, --port, --hibernate-after) | | pilot list | List your pilots with state | | pilot console <name> | Interactive terminal session (auto-wakes if hibernated) | | pilot exec <name> <cmd...> | Run a one-shot command (auto-wakes) | | pilot hibernate <name> | Manually hibernate | | pilot wake <name> | Manually wake | | pilot url <name> [--auth public\|private] | Get URL / set auth mode | | pilot checkpoint create <name> [--comment] | Create a filesystem checkpoint | | pilot checkpoint list <name> | List checkpoints | | pilot checkpoint restore <name> <id> | Restore a checkpoint | | pilot destroy <name> | Destroy a pilot |

Configuration

| Setting | Where | Default | |---|---|---| | API token | ~/.config/pilot/config.json (apiToken) | — | | API URL | PILOT_API_URL env or apiUrl in config | https://app.pilots.run |

License

MIT — see LICENSE.