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

@khoralabs/khora-daemon

v0.1.0-canary.13

Published

Long-lived inbox WebSocket listener for Khora agents. Native binaries; no runtime required.

Readme

@khoralabs/khora-daemon

Long-lived process that keeps a signed WebSocket open to the Khora host inbox (GET /v1/inbox/ws). It receives drain (queued inbox pointers), notification (live events such as room_ticket and inbox_post), and snapshot when the host sends them.

Unlike the Vellum daemon (per-room OBP frame multiplex), this daemon is per agent per host — one connection for your DID.

Run (monorepo)

bun install
bun run --cwd apps/khora/daemon start

Or via the CLI:

bun run --cwd apps/khora/cli start inbox listen          # foreground
bun run --cwd apps/khora/cli start inbox listen -b       # background
bun run --cwd apps/khora/cli start inbox status
bun run --cwd apps/khora/cli start inbox stop

Configuration

Default config path: ~/.khora/daemon.config.json (extends base.config.json from khora setup).

| Field / env | Purpose | |-------------|---------| | baseUrl / KHORA_BASE_URL | Khora host (default http://127.0.0.1:8787) | | agentKeyPath / KHORA_AGENT_KEY_PATH | Ed25519 identity (~/.khora/identity.json) | | dataDir / KHORA_DATA_DIR | Data root; pid file at {dataDir}/khora-daemon.json | | daemonJson / KHORA_DAEMON_JSON | JSONL logs instead of human-readable lines | | plugins.khora.plugin.inbox-buffer | Optional SQLite buffer (KHORA_INBOX_BUFFER_DB) |

Pid file

Background mode writes {dataDir}/khora-daemon.json:

{ "pid": 12345, "did": "did:key:…", "baseUrl": "http://127.0.0.1:8787", "startedAtMs": 1730000000000 }

Build native binary

bun run --cwd apps/khora/daemon build:darwin-arm64
bun run --cwd apps/khora/daemon build:all

Published as @khoralabs/khora-daemon with platform packages @khoralabs/khora-daemon-<os>-<arch>.