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

@yoyo-bot/cli

v0.2.0

Published

YoYo CLI — search, install, fork, and publish binders for AI agents. The universal binder registry.

Readme

@yoyo-bot/cli

The command-line tool for YoYo — the universal binder registry for AI agents.

Search, install, fork, and publish binders from your terminal.

Install

npm install -g @yoyo-bot/cli

Quick Start

# Authenticate
yoyo auth

# Search for binders
yoyo search "knowledge base"

# Install a binder
yoyo bind personal-knowledge-wiki

# List your installed binders
yoyo list

# Create a new binder
yoyo init my-binder

# Publish your binder
yoyo publish

Commands

yoyo auth

Authenticate with your YoYo API key. Get one at yoyo.bot/settings.

yoyo auth
# Prompts for your API key and saves to ~/.yoyo/config.json

yoyo auth --key yoyo_your_key_here
# Set key directly

yoyo search <query>

Search the binder registry.

yoyo search "debugging"
yoyo search "rag" --category research
yoyo search --featured

yoyo bind <slug>

Install a binder. Downloads the full recipe — instructions, code, config, and examples.

yoyo bind personal-knowledge-wiki
yoyo bind knowledge-base-rag --org my-team

yoyo unbind <slug>

Remove an installed binder.

yoyo unbind personal-knowledge-wiki

yoyo list

List your installed and published binders.

yoyo list
yoyo list --org my-team

yoyo init <name>

Scaffold a new binder with the standard directory structure.

yoyo init my-binder
# Creates:
#   my-binder/
#   ├── binder.md
#   ├── manifest.json
#   ├── skills/
#   ├── src/
#   ├── config/.env.example
#   └── examples/

yoyo publish

Publish a binder to the YoYo registry.

cd my-binder
yoyo publish

yoyo whoami

Check your authentication status.

yoyo whoami
# → Authenticated as: david (yoyo_38LG...pzf)

What's a Binder?

A binder is a complete recipe for an AI agent — not just a prompt or a skill file, but the full package:

| Component | Purpose | |-----------|---------| | binder.md | The operating manual — architecture, workflows, conventions | | src/ | Runnable source code and scripts | | skills/ | Heuristic instruction files | | config/ | Parameters, env templates, schemas | | infrastructure/ | Dockerfiles, DAGs, Terraform, DB migrations | | examples/ | Worked demonstrations with expected output |

The agent is the chef. The binder is the recipe.

Configuration

Config is stored in ~/.yoyo/config.json:

{
  "apiKey": "yoyo_your_key_here",
  "apiUrl": "https://api.yoyo.bot/v1"
}

Also Available

  • MCP Server: npx @yoyo-bot/mcp — native agent integration (14 tools)
  • Copy Prompt: paste a one-liner into any agent to install a binder
  • Web: yoyo.bot/binders — browse and fork

API Documentation

Full OpenAPI 3.0 spec for programmatic access:

curl https://api.yoyo.bot/v1/openapi.json

Quick start guide: curl https://api.yoyo.bot/v1/docs

Links

License

MIT