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

@yolosystems/yolo-cli

v0.1.18-dev

Published

An agentic CLI to vibe with PAAS resources by Yolo Systems, Inc

Downloads

153

Readme

YOLO CLI

Talk to your cloud. In plain English.

YOLO CLI is an interactive terminal application that lets you manage and query your AWS infrastructure using natural language. No more memorizing CLI flags or digging through console dashboards -- just ask for what you need.


Prerequisites

You'll need Node.js v20 or higher. The recommended way to manage Node versions is with NVM (Node Version Manager).

Installing NVM

Linux / macOS:

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash

After installation, restart your terminal (or source ~/.bashrc / source ~/.zshrc), then:

nvm install 20
nvm use 20

Windows:

Use nvm-windows instead. After installing it:

nvm install 20
nvm use 20

Verify your setup:

node --version
# v20.x.x or higher -- you're good

Getting Started

1. Create your account

Head over to runyolo.dev and sign up with your Google account. Takes about ten seconds.

2. Install the CLI

npm i -g -f @yolosystems/yolo-cli

3. Authenticate

Once you're signed in at runyolo.dev, you'll see your personal auth key on the dashboard. Copy it and run:

yolo-cli set-auth <your-auth-key>

Your credentials are encrypted and stored locally on your machine. Nothing is sent to our servers.

4. Launch

yolo-cli

That's it. You're in.

5. Connect your AWS account

Inside the CLI, run:

/paas-auth

This walks you through linking your AWS credentials (via credential file or manual entry). Once connected, you can start querying your infrastructure immediately.


Usage

YOLO CLI gives you a two-panel interactive terminal: output on top, input on the bottom. Just type what you want to know.

Natural language queries

Ask questions the way you'd ask a colleague:

list all running EC2 instances
show S3 buckets with public access
what RDS databases do I have in us-east-1
show me Lambda functions that were modified this week

Filters

Use @ filters to narrow your queries by service or region:

@service=ec2 @region=us-west-2 list all running instances
@service=s3 show bucket sizes and usage
@region=eu-west-1 what resources do I have
@service=ec2 @service=rds @region=us-west-2 show all resources

Type @ in the input to see available filter options with auto-completion.

Commands

Type / to see special commands. Here's the full list:

| Command | What it does | |---|---| | /paas-auth | Connect or re-authenticate your cloud account | | /resume | Pick up a saved conversation | | /export | Export the current conversation to clipboard or file | | /clear | Clear the output panel | | /theme | Switch the UI theme | | /feedback | Send feedback to the team | | /help | Show help inside the CLI | | /about | Application info | | /exit | Exit |

Navigation

  • Up/Down arrows -- navigate auto-completion suggestions
  • Tab / Enter -- select a suggestion
  • Esc -- close the suggestion list
  • Ctrl+C -- exit the application

Supported AWS Services

These services have the deepest support right now -- full read/query coverage and the most reliable results:

| Category | Services | |---|---| | Compute | EC2, Lambda, ECS, EKS | | Storage | S3 | | Database | DynamoDB, RDS | | Networking | VPC, CloudFront, Route 53, API Gateway | | Security | IAM, Cognito | | Containers | ECR |

Coverage for additional AWS services is actively expanding. You can still query other services -- results may vary as we build out deeper support.

All AWS regions are supported. Use the @region filter or just mention the region in your query.


Security

  • Your auth key is encrypted using your machine's hardware ID and stored locally at ~/.yolo/.
  • AWS credentials stay on your machine.
  • No credentials are transmitted to YOLO servers.

Coming Soon

  • Google Cloud Platform (GCP) support
  • CoreWeave support

Troubleshooting

Permission errors on startup

Linux / macOS:

chmod 755 ~/.yolo && chown $USER ~/.yolo

Windows:

icacls "%USERPROFILE%\.yolo" /grant %USERNAME%:F

Auth key not working

Re-set your auth key:

yolo-cli set-auth <your-auth-key>

You can always grab a fresh key from runyolo.dev.

Node version issues

Make sure you're on v20+:

node --version

If not, use NVM to switch:

nvm install 20 && nvm use 20

Feedback & Support

Found a bug? Have a feature request? Use the /feedback command inside the CLI, or reach out through runyolo.dev.


Copyright 2026 YOLO Systems