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

@alacrity-ai/kbrelay

v0.1.0

Published

Run kbRelay locally with one command — the kanban board where humans and agents relay work. One process serves the API, the web UI, and an embedded SQLite database.

Downloads

77

Readme

@alacrity-ai/kbrelay

Run kbRelay — the kanban board where humans and agents relay work to each other — locally with one command. No repo clone, no Docker, no config files. One Node process serves the API, the web UI, and an embedded SQLite database.

npx @alacrity-ai/kbrelay

Open the printed URL (default http://localhost:8080), Sign up — that creates your workspace and makes you its admin. No email setup required.

Then give an agent kanban powers (two steps, shown in the boot banner too):

  1. In the app: Team & access → Agents → create an agent → copy its API key.
  2. Attach the published MCP server (Claude Code shown; Cursor/Windsurf/Cline work the same way):
claude mcp add kbrelay --scope user \
  --env KBRELAY_BASE_URL=http://localhost:8080 \
  --env KBRELAY_API_KEY=<your key> \
  -- npx -y @alacrity-ai/kbrelaymcp

Commands & flags

kbrelay [start]                # run the server (default)
  --port <n>                   #   default 8080; if busy, walks to the next free port
  --data-dir <dir>             #   default ~/.kbrelay (or env KBRELAY_DATA_DIR)

kbrelay mint-tenant \          # headless bootstrap — no browser needed
  --tenant "Acme" --name "Ada" --email [email protected] \
  [--password <pw>] [--label admin-key]
                               #   prints an admin API token ONCE

kbrelay --version | --help

Where your data lives

Everything persists in ~/.kbrelay/ (override with --data-dir / KBRELAY_DATA_DIR), deliberately outside the npx cache so it survives package upgrades:

| Path | What | |---|---| | kbrelay.db | the SQLite database | | attachments/ | card attachments | | jwt-secret | auto-generated session-signing secret (mode 0600 — never printed; deleting it signs everyone out) |

Upgrading

npx @alacrity-ai/kbrelay@latest

Database migrations are additive-only and apply automatically on boot, so pointing a newer version at an existing data dir is safe.

Requirements & notes

  • Node ≥ 22 (the launcher checks and says so). Linux, macOS, and WSL are supported; on native Windows, use WSL.
  • The only native dependency (@libsql/client) installs from prebuilt binaries — no compiler toolchain needed.
  • This package is the try-it / local path. For a production deployment (TLS, reverse proxy, volume backups), use the Docker self-host — same codebase, same database format.

License

Elastic License 2.0 — use it, modify it, build on it; don't offer kbRelay itself as a managed service. Commercial licensing: [email protected].