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

@kibibot/cli

v1.0.21

Published

KibiBot CLI — deploy tokens, check balances, and manage your AI agent from the terminal

Readme

@kibibot/cli

The official KibiBot command-line interface. Deploy tokens on-chain, check balances, check fee earnings, manage Kibi Credits, and control your AI agent from the terminal.

Installation

npm install -g @kibibot/cli
kibi --version

Run without installing

npx @kibibot/cli whoami
npx @kibibot/cli token create --name MyToken --symbol MTK --chain base

Setup

1. Get an API key

Go to kibi.bot/settings/api-keys → Create API Key → copy the kb_... key.

2. Login

# Interactive — prompts for API key
kibi login

# Headless — pass key directly
kibi login --api-key kb_YOUR_KEY

Credentials are stored in ~/.kibi/config.json. You can also set KIBI_API_KEY as an environment variable.

3. Verify

kibi whoami

Commands

Identity

kibi whoami          # your account info and wallet addresses
kibi logout          # clear stored credentials

Token Creation

# Interactive (prompts for name, symbol, chain, source, image)
kibi token create

# Headless
kibi token create --name "MyToken" --symbol MTK --chain base
kibi token create --name "Moon" --symbol MOON --chain solana --description "To the moon"
kibi token create --name "Moon" --symbol MOON --chain base --image-url https://example.com/moon.png
kibi token create --name "Moon" --symbol MOON --chain base --source https://x.com/user/status/123
kibi token create --name "Test" --symbol TST --chain base --no-wait  # return job ID immediately

# Check deployment status
kibi status 12345

# Get token info
kibi token info 0x1234...
kibi token info 5Yz8K... --chain solana

# List tokens you've created
kibi tokens created
kibi tokens created --page 2

Supported chains: bnb · base · solana

Balances & Quota

kibi balances        # on-chain wallet balances across all chains (with USD values)
kibi quota           # daily token creation quota per chain

Fee Earnings

# Summary across all chains (with USD values)
kibi fees

# Per-platform breakdown for a specific chain (with USD values)
kibi fees --chain bnb
kibi fees --chain base
kibi fees --chain solana

# Fee earnings for a specific token
kibi fees --chain bnb --platform flap --token 0x1234...
kibi fees --chain bnb --platform fourmeme --token 0x1234...
kibi fees --chain solana --platform pumpfun --token 5Yz8K...

Supported platforms: flap · fourmeme (BNB Chain) · basememe · clanker (Base) · pumpfun (Solana)

Kibi Credits & Kibi LLM Gateway

# Check Kibi LLM Credits balance + agent reload config
kibi llm credits

# List available AI models
kibi llm models

# Reload Kibi Credits from trading wallet (requires Agent Reload enabled)
kibi llm reload

# Emergency disable agent reload
kibi llm reload --disable

# Generate provider config for your tool
kibi llm setup openclaw   # OpenClaw config JSON (use with --install to write directly)

Config

kibi config get           # show all config
kibi config get apiKey    # show specific key
kibi config set apiKey kb_YOUR_KEY

kibi about               # version, links, branding

Global Flags

| Flag | Description | |---|---| | --json | Machine-readable JSON output | | --debug | Verbose HTTP request/response logging | | --version | Print version | | --help | Print help |

Configuration

Config precedence (highest to lowest):

  1. Environment variableKIBI_API_KEY
  2. Config file~/.kibi/config.json

Requirements

  • Node.js >= 18.0.0

Links

License

MIT