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

@abix5/opencode-beads

v0.4.2

Published

OpenCode plugin for the Beads (bd 1.0+) Dolt-powered issue tracker. Ships 26 typed beads_* tools covering the full bd surface — issues, dependencies, ready/blocked queues, comments, persistent memory, dolt push/pull, plus modern workflow primitives (formu

Readme

opencode-beads

OpenCode plugin for Beads — the Dolt-powered issue tracker for AI agents. Provides typed beads_* tools that wrap the modern bd 1.0+ CLI and one slash command, /beads:wizard, that helps the user pick a setup by consulting the live beads documentation.

Install

Add to your OpenCode plugin config:

Restart OpenCode after adding or updating.

If OpenCode keeps loading a stale cached build:

rm -rf ~/.cache/opencode/node_modules/@abix5/opencode-beads
rm -f ~/.cache/opencode/bun.lock ~/.cache/opencode/package.json

Requirements

  • bd CLI 1.0.0 or newer (install: brew install beads or curl -fsSL https://raw.githubusercontent.com/gastownhall/beads/main/scripts/install.sh | bash).
  • A git repository for the project you want to track.

The plugin never passes the removed --no-daemon flag and refuses to run bd directly via bash — agents must go through the typed tools.

Typed tools

Lifecycle:

  • beads_prime — agent manual: how to use the rest of the tools.
  • beads_initbd init (idempotent: skips if .beads/ already exists).
  • beads_doctorbd doctor, optional fix: true.
  • beads_status — DB overview.

Issues:

  • beads_create — create with optional deps (e.g. discovered-from).
  • beads_update — title / status / priority / parent / assignee / labels.
  • beads_claim — atomic claim (compare-and-swap).
  • beads_close / beads_reopen — bulk-capable.
  • beads_show / beads_list / beads_ready / beads_blocked.
  • beads_search (free text) / beads_query (bd query language).

Dependencies:

  • beads_dep_add / beads_dep_remove — types: blocks, parent-child, related, discovered-from.
  • beads_graph — depth/direction-bounded dependency graph.

Comments and memory:

  • beads_comment (use [progress] [decision] [risk] [blocker] [handoff] tags).
  • beads_comments_list.
  • beads_remember / beads_memories — cross-session persistent insights.

Sync:

  • beads_doltpush, pull, status, log, commit.

Workflow primitives (bd 1.0+):

  • beads_formula_list — list workflow templates.
  • beads_pour — instantiate a formula into a persistent molecule.
  • beads_mollist / bond / squash / burn / wisp_list / wisp_create / wisp_gc.
  • beads_gatecreate / approve / list / show / cancel (human, timer, github gates).

Escape hatch:

  • beads_run — run any bd subcommand (--json is added automatically). Use only when no typed tool fits.

Slash command

/beads:wizard is a prompt (not a tool). When invoked, the agent is instructed to:

  1. Refresh its knowledge of beads via Context7 (/gastownhall/beads) — falling back to https://gastownhall.github.io/beads/ if Context7 isn't available.
  2. Inspect the current project (beads_doctor, beads_prime, beads_status).
  3. Propose 2–4 concrete configuration options tailored to the user.
  4. Apply only the option the user explicitly approves, using beads_* tools.
  5. Return a brief structured report in the user's language.

The wizard never mutates anything without explicit consent.

Development

npm install
npm run check
npm run build
npm pack --dry-run