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

@smi0001/agentkit

v0.2.0

Published

Interactive launcher for the @smi0001 family of agents and tools (agent-binod, webhook-playground, and more).

Readme

@smi0001/agentkit

Interactive launcher for the @smi family of agents and developer tools. One command, a menu, and you're in.

npx @smi0001/agentkit

What's inside

agentkit is a thin launcher. It doesn't reimplement any tool — it bundles the existing published packages and gives you a single entry point with a friendly menu.

| ID | Tool | Underlying package | | ---------- | ------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- | | binod | AI-powered PR review (Anthropic) | @smi0001/agent-binod | | webhook | Self-hosted webhook capture / inspection server | @smi0001/webhook-playground | | db-sync | Sync a remote Postgres DB (sandman/UAT) to local + reconcile Sequelize | @smi0001/agent-db-sync |

More tools are on the way (doc generator, context builder, PR visualizer, …). Each will land as its own @smi0001/agent-* package and get a one-line registration here.

Install

# Run on demand
npx @smi0001/agentkit

# Or install globally
npm i -g @smi0001/agentkit
agentkit         # interactive menu
smi              # alias for the same thing

You can also keep using the underlying tools standalone — @smi0001/agent-binod, @smi0001/webhook-playground, and @smi0001/agent-db-sync are independently published and work the same on their own.

Usage

agentkit                       # interactive menu
agentkit list                  # list registered tools
agentkit binod                 # run agent-binod
agentkit binod --help          # arguments after the id are forwarded to the tool
agentkit webhook               # start the webhook playground
agentkit db-sync diff          # any subcommand of agent-db-sync
agentkit -h                    # help

Anything you pass after the tool id is forwarded verbatim to that tool's CLI, so existing flags and workflows keep working.

Adding a new tool

A "tool" in agentkit is just an entry in src/plugins.ts:

{
  id: 'mytool',
  name: 'My new tool',
  description: 'What it does, shown in the menu',
  package: '@smi0001/agent-mytool',     // npm package name
  binName: 'mytool',                // bin field in that package
}

Steps:

  1. Build and publish the tool as its own npm package (@smi0001/agent-<name> is the convention).
  2. Add it as a dependency in package.json.
  3. Register it in src/plugins.ts.
  4. Bump agentkit and republish.

Tools are spawned as subprocesses with inherited stdio, so they get full control of the terminal — no special integration needed.

Development

npm install
npm start          # run via tsx (no build step)
npm run build      # emit dist/
node dist/index.js # run the built artifact

Requires Node 22+ (matches the strictest dependency).

Roadmap

  • @smi0001/agent-docgen — documenting agent
  • @smi0001/agent-context — context-making agent for repos
  • @smi0001/agent-pr-visualize — turn a PR diff into a pictorial feature summary
  • @smi0001/agent-core — extracted shared primitives (prompt UI, Claude Agent SDK loop, config) once enough tools share code
  • LLM-assisted recovery for unknown migration errors in agent-db-sync

License

MIT © Shammi Hans