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

@drunkcoding/auto-claude

v0.1.3

Published

Curated installer for Claude Code tools and plugins

Readme

@drunkcoding/auto-claude

Curated installer and lifecycle manager for Claude Code tools and plugins.

Quick start

npx @drunkcoding/auto-claude

Pick the tools and plugins you want from the checklist; @drunkcoding/auto-claude installs them in the right order, runs any required post-install steps, and prints any final instructions you need to give to Claude itself.

Commands

| Command | What it does | |---|---| | npx @drunkcoding/auto-claude | Interactive install wizard (default) | | npx @drunkcoding/auto-claude status | Show installed/missing state | | npx @drunkcoding/auto-claude remove [--yes] | Uninstall installed items | | npx @drunkcoding/auto-claude update [--only <id>] | Update installed items | | npx @drunkcoding/auto-claude default | Silently install all default: true items globally (for fleet automation) | | npx @drunkcoding/auto-claude default --list (or -l) | List default items and their installed state | | npx @drunkcoding/auto-claude --refresh-catalog | Bypass the 24h catalog cache |

Fleet automation

npx @drunkcoding/auto-claude default is non-interactive — no prompts, no TTY required, idempotent. Use it from a bash script to provision every machine in your company:

npx -y @drunkcoding/auto-claude default

Items shipped to every device are flagged "default": true in catalog.json. The command runs detection first and skips anything already installed, continues past per-item failures, and exits 0 on success, 1 on partial failure, or 2 on catalog load failure.

What it installs

The catalog is fetched at runtime; the root catalog.json ships with the npm package as the offline fallback:

Tools

  • rtk — token-optimized CLI proxy (also runs rtk init -g in the repo)
  • graphify — knowledge-graph builder for your codebase, surfaced via /graphify
  • gitnexus — code-intelligence MCP server; indexes your repo into a graph

Plugins

  • claude-mem — persistent cross-session memory
  • superpowers — skills framework
  • claude-code-setup — automation recommender
  • microsoft-docs — Microsoft / Azure / .NET docs and samples
  • context7 — version-specific library docs pulled into LLM context
  • plugin-dev — toolkit for developing Claude Code plugins
  • drunk-app — assistant for configuring drunk-app Helm chart deployments
  • dknet-minimal — vertical-slice features on DKNet.Minimal.Template (.NET 10)

Requirements

  • Node.js 20+
  • claude CLI (for plugin install)
  • git (for project-scoped operations)
  • pip (for graphify) and Homebrew (for rtk on macOS)

Releases

Releases are published automatically by .github/workflows/npm-publish.yaml:

  • Pushes to main (or manual workflow_dispatch) compute the next version from the commit log via paulhatch/semantic-version. Use (MAJOR) / (MINOR) in commit subjects to bump major/minor; otherwise patch.
  • The workflow runs pnpm typecheck && pnpm test && pnpm build, updates package.json, creates a tagged GitHub Release, and publishes to npm.

Required secret: NPM_TOKEN — npm automation token with Publish permission. Add it under Settings → Secrets and variables → Actions on the GitHub repo.