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

bazilion

v0.5.1

Published

Multi-agent runtime CLI — spawn LLM agents, manage profiles/groups/skills, and run the local daemon.

Readme

bazilion

Multi-agent runtime CLI — spawn LLM agents, manage profiles/groups/skills, and run the local daemon.

npm License: MIT

Alpha. APIs may change between 0.x releases.

Install

Requires Node 24 or newer.

npx bazilion serve         # one-shot
# or install globally
npm install -g bazilion
bazilion serve

Quickstart

# Start the daemon — auto-bootstraps ~/.bazilion on first run
# (creates dirs, runs migrations, mints the bootstrap token, writes auth.json).
bazilion serve

The daemon prints a bootstrap token before binding 127.0.0.1:4321. CLI commands pick it up automatically from ~/.bazilion/auth.json.

From another terminal:

# Set up a provider (env var, or `bazilion config set` to persist it).
export ANTHROPIC_API_KEY=sk-ant-...
bazilion provider enable anthropic
bazilion provider models anthropic claude-sonnet-4-6

# Spawn an agent from the default profile and chat with it.
bazilion agent spawn --profile default --name first
# → spawned agent <uuid> (first)

bazilion agent chat <uuid>                       # interactive REPL
bazilion agent chat <uuid> --message "say hi"    # one-shot

Run bazilion --help for the full command list, or bazilion <command> --help for details on any subcommand.

Web UI

The web UI lives in the bazilion repo under apps/web and is not yet shipped in the npm package. To run it alongside the daemon today:

git clone https://github.com/rullopat/bazilion
cd bazilion && pnpm install
cd apps/web && pnpm dev    # http://127.0.0.1:4322

Bundling the web UI into bazilion is on the roadmap.

ChatGPT (Plus/Pro/Team) OAuth

Use your ChatGPT account instead of an API key to access gpt-5.x / gpt-5.x-codex models:

bazilion auth openai login     # browser flow on localhost:1455
bazilion auth openai status    # check connection / token expiry

After connecting, enable openai-codex and curate at least one model. Credentials are stored AES-256-GCM-encrypted in the daemon's secrets table.

What's in the box

  • CLI + daemon, both spawned via bazilion serve. The daemon binds 127.0.0.1:4321 and owns ~/.bazilion/ (SQLite DB, profiles, agents, groups, skills, logs).
  • 17 subcommand families: agent, profile, group, skill, provider, config, auth, memory, send, inbox, trigger, serve, doctor, backup, token, login, uninstall.
  • Provider support via pi-ai: Anthropic, OpenAI (key + ChatGPT OAuth), Google AI Studio + Vertex, Azure OpenAI, AWS Bedrock, Mistral, Groq, Cerebras, xAI, Z.AI, Hugging Face, OpenRouter, Vercel AI Gateway, LM Studio, Ollama.
  • OpenClaw-compatible skills: drop a SKILL.md into ~/.bazilion/skills/<name>/, or import in bulk via bazilion skill import --from openclaw.

Uninstall

bazilion uninstall                # interactive: data wipe, then optional full wipe
bazilion uninstall --yes          # data tier only (DB + profiles/agents/groups)
bazilion uninstall --yes --all    # also remove auth.json, logs/, skills/

Documentation

License

MIT