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

@agentonboard/cli

v0.2.2

Published

The **AgentOnboard CLI** (`aon`) is the official command-line tool for managing AgentOnboard session tokens and interacting with the AgentOnboard directory.

Downloads

529

Readme

@agentonboard/cli

The AgentOnboard CLI (aon) is the official command-line tool for managing AgentOnboard session tokens and interacting with the AgentOnboard directory.

AgentOnboard is an open ecosystem for AI agents to discover, authenticate with, and operate third-party services on behalf of humans — without the human juggling API keys, MCP configs, or per-platform credentials.

Installation

npm install -g @agentonboard/cli

Setup

  1. Create an account at ao.aawej.in
  2. Generate an API key from your dashboard
  3. Save it with the CLI:
aon save <your-api-key>

Verify everything is working:

aon doctor

Usage

Managing keys

| Command | Description | |---------|-------------| | aon save [label] <key> | Save an API key (optionally with a label) | | aon list | Show all saved keys | | aon token get [label] | Exchange a key for a 5-minute session token |

Directory

| Command | Description | |---------|-------------| | aon directory list | List all partners in the directory | | aon directory get <slug> | Show details and API docs for a partner |

Add --json to any directory command for machine-readable output.

Configuration

| Command | Description | |---------|-------------| | aon config | Show current configuration | | aon config set apiUrl <url> | Set a custom API URL | | aon doctor | Check that everything is configured correctly |

How it works

  1. You save your API key with aon save <key> — the key stays on your machine
  2. When your agent needs to use a service, it calls aon token get to get a 5-minute session token
  3. The agent uses that session token to call the partner's API
  4. Partners verify the token server-side against AgentOnboard

Your static API key never leaves your machine. Agents only get short-lived session tokens.

Environment variables

  • AGENTONBOARD_API_URL — Override the API base URL (defaults to https://api.ao.aawej.in)

Learn more