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

@itz4blitz/ai-tools

v1.2.3

Published

Unified CLI for all ai-tools engines (hooks, mcp, skills, agents, rules)

Readme

ai-tools

Same MCP servers, skills, agents, rules, and hooks — on every AI coding tool you actually use.

CI npm

Install

npm i -D @itz4blitz/ai-tools

Node 22+.

Use it

npx ai-tools detect
npx ai-tools mcp init

Put servers in mcp.config.ts:

import { defineConfig } from "@itz4blitz/ai-tools/mcp";

export default defineConfig({
  servers: [
    {
      id: "github",
      name: "GitHub",
      transport: {
        type: "stdio",
        command: "npx",
        args: ["-y", "@modelcontextprotocol/server-github"],
      },
    },
  ],
});
npx ai-tools mcp install

That writes each tool's real file. Cursor gets .cursor/mcp.json. Claude Code gets .mcp.json. Grok and Codex get TOML [mcp_servers]. OpenCode gets opencode.json. ZCode gets mcp.servers. You don't keep those in sync by hand.

Skills, agents, rules, and hooks are the same commands:

npx ai-tools skills install
npx ai-tools agents install
npx ai-tools rules install
npx ai-tools hooks install

Keep a server in the right repos

{
  id: "internal-wiki",
  name: "Internal wiki",
  transport: { type: "stdio", command: "wiki-mcp" },
  layer: "project",              // repo only (default)
  whenPathContains: ["acme-docs"],
}

npx ai-tools mcp audit lists user-global configs that look like they belong in a project.

One bundle

import { definePlugin } from "@itz4blitz/ai-tools";

export default definePlugin({
  id: "team-defaults",
  name: "Team defaults",
  version: "1.0.0",
  mcpServers: [
    {
      id: "github",
      name: "GitHub",
      transport: {
        type: "stdio",
        command: "npx",
        args: ["-y", "@modelcontextprotocol/server-github"],
      },
    },
  ],
});
npx ai-tools plugins plan
npx ai-tools plugins install

Tools

Claude Code, Cursor, Codex, OpenCode, Grok, ZCode, Gemini CLI, Cline, Copilot, Amp, Continue, Roo Code, Windsurf, Kiro, Factory Droid, Antigravity CLI.

License

MIT. See CONTRIBUTING.md to work on the repo.