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

bobkit

v0.1.0

Published

CLI for installing and updating Bobkit AI-agent skills across local agent runtimes.

Readme

Bobkit

Bootstrap for shipping AI-agent skills from a single source of truth to multiple targets (Claude Code, Codex, ...) with evals and a marketplace build wired in.

Today it carries five skills: vegetable-joke, create-mr, review-mr, resolve-mr, and feature-brainstorm. The plumbing is the point: drop new skills into .rulesync/skills/ and the pipeline fans them out everywhere.

How It Works

   .rulesync/skills/*           <-- source of truth (committed)
          |
          |  rulesync generate
          v
   .claude/skills/*             <-- Claude Code (gitignored)
   .codex/skills/*              <-- Codex CLI    (gitignored)
          |
          |  promptfoo eval
          v
   pass / fail on prompt contracts
          |
          |  scripts/build-claude-plugin.mjs
          v
   dist/claude-plugin/          <-- installable plugin
   dist/claude-marketplace/     <-- local marketplace
          |
          |  GitHub Actions on push to main
          v
   claude-marketplace branch    <-- remote install target

Run It

| Task | Command | | --- | --- | | Install Bobkit globally | npm install -g bobkit | | Install generated skills globally | bobkit install | | Update Bobkit and refresh global skills | npm install -g bobkit@latest && bobkit install | | Generate skills for all targets | npm run rulesync:generate | | Check generated output is fresh | npm run rulesync:check | | Run prompt evals | npm run eval | | Build plugin + marketplace artifacts | npm run build:claude | | Build npm package assets | npm run build:package | | What CI runs | npm run ci |

Bobkit CLI

The CLI manages Bobkit skills across projects on this machine. Normal users install it from npm:

npm install -g bobkit
bobkit install

The npm package includes pre-generated Codex and Claude skills. bobkit install symlinks those bundled skills into:

  • ~/.codex/skills
  • ~/.claude/skills

Useful commands:

bobkit list       # list available skills
bobkit status     # show package mode and global link state
bobkit doctor     # check prerequisites and broken links
bobkit install    # refresh global symlinks from bundled skills
bobkit update     # print the npm upgrade command

Calling Installed Skills

bobkit install installs skills, not shell commands.

In Codex, start a new session after install if one was already open, then name the skill:

$create-mr
$review-mr https://github.com/OWNER/REPO/pull/123
$resolve-mr
$feature-brainstorm Help me shape a new feature.
Tell me a joke about vegetables.

Natural-language requests work too, for example "use create-mr to open a PR for this branch." Do not rely on /create-mr in Codex; slash-prefixed input can be intercepted by the client as a built-in command.

In Claude Code, global skills can be triggered by asking to use the skill by name. If you install the Bobkit Claude plugin, use the namespaced plugin commands shown below.

For contributors working from a checkout:

cd ~/Documents/bobkit
npm link
bobkit install --dev

In dev checkout mode, Bobkit can regenerate Rulesync outputs before linking:

bobkit install --dev
bobkit update --dev

If a skill already exists as a normal directory, Bobkit will not overwrite it by default. Use bobkit install --replace once when you want Bobkit to adopt those existing local copies as symlinks.

Publishing To npm

The package name is bobkit. [email protected] has already been published manually once, and npm Trusted Publishing is configured for BobvD/bobkit with .github/workflows/npm-publish.yml.

Future release flow:

  1. Bump the version in package.json and package-lock.json, for example npm version patch --no-git-tag-version.
  2. Add a matching CHANGELOG.md entry, for example ## 0.1.0 - ....
  3. Run npm run release:check.
  4. Open and merge the PR to main.
  5. The npm Publish workflow sees the unreleased version, runs CI, verifies the package tarball, publishes to npm through Trusted Publishing, creates v<version>, and creates a GitHub release from the changelog entry.

Useful release checks:

npm view bobkit version dist-tags.latest bin
gh release view v$(node -p "require('./package.json').version")
gh run list --workflow "npm Publish" --branch main --limit 5

Optional RTK

RTK (rtk-ai/rtk) may be a useful optional companion for Bobkit later. It can reduce AI-agent context usage by rewriting noisy shell commands through rtk, but it is not required for this spike.

Try The Skills Locally

npm run build:claude

Then in Claude Code:

/plugin marketplace add ./dist/claude-marketplace
/plugin install bobkit@bobkit-marketplace
/reload-plugins
/bobkit:create-mr
/bobkit:review-mr https://github.com/OWNER/REPO/pull/123
/bobkit:resolve-mr
/bobkit:feature-brainstorm
/bobkit:vegetable-joke

Install From Anywhere

After CI publishes the claude-marketplace branch:

claude plugin marketplace add BobvD/bobkit@claude-marketplace --scope project
claude plugin install bobkit@bobkit-marketplace --scope project

Layout

.rulesync/skills/      source skills (edit here)
rulesync.jsonc         which targets to generate for
promptfooconfig.yaml   eval config for multi-skill prompt contracts
plugins/claude/        plugin + marketplace manifests
scripts/               build script for Claude artifacts
.github/workflows/     CI: build, eval, publish marketplace branch

.claude/, .codex/, and dist/ are generated. Never edit them by hand.