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

qbsm-init

v0.1.0

Published

One-shot CLI to wire qb-skill-manager MCP into a project (.mcp.json + CLAUDE.md + hooks)

Readme

qbsm-init

One-shot CLI that wires qb-skill-manager (skills auto-extraction for Claude Code) into any project. After running this, Claude Code in that project can call the qbsm MCP server (SSE, hosted on Fly.io) to record skills demonstrated in the conversation.

Quick start

# 1. Sign up + issue an API token at https://qb-skill-manager.fly.dev/settings/tokens
# 2. Run qbsm-init in your project directory:
npx qbsm-init --api-key qbsm_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

That writes three files in your project (all merged idempotently if they already exist):

  • .mcp.json — registers qbsm as a remote SSE MCP server
  • CLAUDE.md — appends a guidance section so Claude Code knows when to call the tools
  • .claude/settings.json — hooks that nudge the agent to call register_skill after package installs

Then start a Claude Code session as usual; the qbsm server appears in claude mcp list.

Options

| Flag | Description | |------|-------------| | --api-key <key> | Required (or interactive prompt). Get at https://qb-skill-manager.fly.dev/settings/tokens | | --server-url <url> | Override server (default https://qb-skill-manager.fly.dev) | | -y, --yes | Non-interactive mode; --api-key becomes required | | --no-hooks | Skip .claude/settings.json hook registration | | --overwrite | Replace existing <qbsm:start>…<qbsm:end> section in CLAUDE.md | | -h, --help | Show help |

Positional [target-path] (default .) lets you point at a sibling directory.

Generated .mcp.json entry

{
  "mcpServers": {
    "qbsm": {
      "type": "sse",
      "url": "https://qb-skill-manager.fly.dev/api/mcp/sse",
      "headers": { "x-api-key": "qbsm_..." }
    }
  }
}

.mcp.json is gitignored by default in Next.js / many templates. Do not commit your API key.

Tools exposed

| Tool | Purpose | |------|---------| | auth_status | Confirm which user the API key resolves to | | register_skill | Record a demonstrated skill (idempotent on category + name) | | update_skill | Adjust proficiency / reason / tags on an existing skill | | list_my_skills | List the user's recent skills |

Tokens

If a token is leaked, revoke it at https://qb-skill-manager.fly.dev/settings/tokens and re-run qbsm-init --api-key <new> to overwrite .mcp.json.