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

829cli

v1.1.1

Published

829 Studios CLI tools — plugin management, SSH, and more

Readme

829

Command-line tools for managing WP Engine installs — plugin management, SSH connections, portal access, and more.


Requirements

  • Node.js >= 18 (nodejs.org)
  • WP Engine API credentials — username and token from the WP Engine User Portal
  • SSH keys configured for WP Engine (docs)
  • fzf (optional, required for Tab autocomplete) — brew install fzf

Installation

npm install -g 829cli

First-time Setup

1. Configure your API credentials

829 config

You will be prompted for:

  • WP Engine API username
  • WP Engine API token
  • Default batch size (recommended: 20)
  • Default parallel jobs (recommended: 20)

Settings are saved to ~/.829.json.

2. Sync your install list

829 installs sync

This fetches all WP Engine installs from the API and caches them to ~/.829/installs.json. Re-run any time your install list changes.

3. Enable Tab autocomplete (zsh)

Add the following to your ~/.zshrc:

eval "$(829 completion zsh)"

Then reload your shell:

source ~/.zshrc

Requires fzf. Install with brew install fzf.

For bash, use eval "$(829 completion bash)" in your ~/.bashrc.


Commands

829 config                  Configure API credentials and defaults
829 installs sync           Fetch installs from the WP Engine API
829 installs list           Browse cached installs

829 ssh [install-id]        SSH into a WP Engine install
829 portal [install-id]     Open install in the WP Engine portal

829 plugin scan             Scan plugin status across installs
829 plugin activate         Activate a plugin across installs
829 plugin deactivate       Deactivate a plugin across installs
829 plugin update           Update a plugin across installs
829 plugin delete           Delete a plugin across installs

829 provision               Install/update wordpress-tools and provision API keys

829 help                    Show all commands
829 help <command>          Show detailed help for a command
829 completion zsh          Print zsh completion script
829 completion bash         Print bash completion script

Run 829 help at any time for the full reference.


SSH & Portal Autocomplete

After enabling Tab completion, typing 829 ssh or 829 portal and pressing Tab opens an fzf picker:

INSTALL ID                DOMAIN                                                ENVIRONMENT
absoluteenerg1            absoluteenergy.com                                    🌐 production
absoluteenerstg           absoluteenergy.829stage.com                           📝 staging
absoluteenerdev           absoluteenergy.829dev.com                             ⚙️ development

Arrow up/down to navigate, type to filter, Enter to connect or open.


Output Files

Reports and logs are written to the current working directory:

reports/    CSV reports from plugin scans, actions, and provisioning
logs/       Detailed logs of SSH session output

Updating

npm update -g 829
829 installs sync