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

superbee

v0.1.3

Published

Agent-facing Superbee CLI for reading and writing local OKF knowledge bundles: context notes, docs, cross-links, and live bundle Views.

Readme

superbee

What is Superbee?

Superbee gives AI coding agents shared, versioned, conflict-safe memory — as a folder of plain markdown in your repo.

Agents forget everything between sessions, overwrite each other's work, and keep what they know invisible to the humans they work for. Superbee fixes all three:

  • Memory that persists. Agents write context notes, decisions, plans, and research into a knowledge bundle that survives the session. The next session — or a different agent — picks up exactly where the last one left off. An optional SessionStart hook (Claude Code, Codex, OpenCode) orients every new session automatically.
  • Safe for many writers. Every document write is compare-and-swap versioned and attributed to an actor. Two agents racing on the same document get a clean, typed conflict instead of a silent lost update — and doc history shows who changed what, when.
  • Visible to humans. Everything is plain markdown you can open in any editor, render on GitHub, and diff in git. superbee ui serves the bundle locally as rendered, cross-linked pages with derived backlinks, a live activity feed, and launchable bundle Views. superbee sync shares the bundle with teammates on a dedicated board branch — pulling their changes and pushing yours without touching your code.
  • Agent-native by design. The CLI follows the AXI principles for agent-facing tools: structured, token-lean output; result counts and truncation with explicit escape hatches; idempotent mutations; structured errors with a small, stable exit-code taxonomy. Agents get predictable responses they can act on without parsing prose or flooding their context window.
  • Yours, and portable. Bundles conform to the Open Knowledge Format — new bundles are written as OKF v0.2, and existing v0.1 bundles stay supported in place — so they survive the tool: hand the folder to someone else, or read it with anything that speaks markdown. Everything works offline; the filesystem is the source of truth. Typed document schemas ("kinds") live in the bundle itself, so the bundle describes its own structure.

The npm package ships one self-contained executable with zero runtime dependencies, plus an Agent Skill that teaches agents how to use it.

Install Steps

  1. Install the CLI globally:

    npm install -g superbee
  2. Once superbee is installed, ask your AI agent to run superbee setup. Setup walks the agent through the remaining integration steps (Agent Skill, SessionStart hook, MCP registration) and orients it to the Superbee environment. It is read-only — it inspects your configuration and returns one safe next command at a time, so the agent (with your approval) performs any actual changes.

Upgrading from the legacy @holaxis/aslite package or the retired marketplace plugin? Install superbee alongside it, have your agent run superbee setup to migrate the exact legacy integrations, then remove the old package with npm uninstall -g @holaxis/aslite. Existing .agentstate-lite/ bundles and .agentstate.json bindings keep working with no migration.

How to use Superbee

Superbee is agent-first: you don't type its commands yourself — you ask your agent for what you need, and the Agent Skill included with this package helps the agent translate your instructions into CLI commands. For example:

  • "Set up a Superbee workspace for this project and track our tasks in it."
  • "Write up what we decided about the auth design as a doc, and link it to the task."
  • "What did the last session leave off on? Check the context notes."
  • "Sync the board so my teammate's agent sees this."

Behind those requests, the agent drives a small, predictable CLI: init creates a bundle in a conventional .superbee/ folder (discovered automatically, the way git finds .git); new, doc write, doc update, and link add create and connect typed documents; list and doc read query them; sync shares the board with teammates.

When you want to see the knowledge yourself, ask the agent to open it — or run the two human-facing commands directly:

superbee ui --open        # the bundle, rendered: pages, links, backlinks, live Views
superbee doc open <id>    # one exact document in the same local browser reader

Run superbee --help (or any subcommand with --help) for the full command reference. Design and format docs live in the repository.

License

Apache-2.0 © 2026 Holaxis