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

claude-operator-stack

v0.1.0

Published

Wizard installer for the Claude Operator Stack — a curated stack of skills, agents, MCP servers, and operator workflows for Claude Code.

Readme

claude-operator-stack

Wizard installer for the Claude Operator Stack — a curated stack of skills, agents, MCP servers, and operator workflows for Claude Code.

npx claude-operator-stack init --dry-run    # preview
npx claude-operator-stack init              # apply
npx claude-operator-stack verify            # audit ~/.claude/
npx claude-operator-stack list-stack        # show the 4 core + 2 opt-in components

This CLI is the node-native sibling of install.sh in the parent repo. It targets the same files (~/.claude/settings.json, ~/.claude/mcp-configs/mcp-servers.json, ~/.claude/rules/obsidian-integration.md) and obeys the same safety rule:

settings.json and mcp-servers.json are NEVER overwritten silently. They go to *.from-operator-stack sidecar files. Diff and merge by hand.

Pick whichever path you trust. Both produce the same result. Don't run them back-to-back on a fresh ~/.claude/ — they will create duplicate sidecars.

Commands

init

Interactive wizard that walks the four install.sh steps in prompts form:

  1. Detect claude CLI (exits with 2 if not found).
  2. Pick which marketplaces to enable.
  3. Copy sanitized configs as sidecars; opt-in copy of custom hooks; record vault path.
  4. Print the manual /plugin marketplace add and /plugin install commands you'll run inside Claude Code.
Usage: claude-operator-stack init [options]

Options:
  --dry-run               show what would happen, write nothing
  -y, --yes               accept all defaults; non-interactive
  --claude-dir <path>     override ~/.claude/ resolution (test injection)
  -h, --help              show help

Exit codes: 0 success · 1 user aborted · 2 claude CLI missing · 3 filesystem error.

verify

Read-only audit of ~/.claude/. Reports which stack components are wired and which are missing. Never writes.

Usage: claude-operator-stack verify [options]

Options:
  --json                  emit machine-readable JSON instead of a table
  --claude-dir <path>     override ~/.claude/ resolution (test injection)
  -h, --help              show help

Exit codes: 0 all wired · 1 settings.json not found · 2 settings.json unparsable · 10 at least one component missing.

list-stack

Static printout of the stack components, grouped by tier (4 core, then 2 opt-in) — name, layer, author, repo. Mirrors the README + stack/README.md framing. Useful as a sanity check before you run init.

Usage: claude-operator-stack list-stack [options]

Options:
  --json                  emit JSON instead of a table
  -h, --help              show help

Exit code: always 0.

What this CLI does NOT do

  • It does not call the claude CLI. Marketplace install is interactive inside Claude Code; this wizard prints the commands, the user runs them.
  • It does not install MCP servers. mcp-servers.json.example is copied as a sidecar; you replace tokens by hand.
  • It does not run a plugin runtime. ECC owns runtime; this CLI owns installer ergonomics.
  • It does not publish itself. Pinned at 0.1.0; publishing coordinates with the public visibility flip in Phase 9 of the parent repo roadmap.

Local development

The CLI lives in packages/cli/ of the parent monorepo. From the repo root:

npm install                                # installs the workspace
npm --workspace packages/cli run build     # produces dist/cli.js
npm --workspace packages/cli test          # vitest run

# Direct invocation against the source (no build needed)
npm --workspace packages/cli run dev -- list-stack

# Verify the built bin
node packages/cli/dist/cli.js --help
node packages/cli/dist/cli.js init --dry-run --claude-dir /tmp/cos-test

The package is built with tsup to a bundled ESM module (dist/cli.js, ~24 KB) with a #!/usr/bin/env node shebang on the bin file, plus three small runtime dependencies pulled by npm install: commander, prompts, and picocolors. Node-built-in imports keep their node: prefix in the bundled artefact. Configs ship inside the tarball under configs/ so init is self-sufficient — no monorepo or network access required at runtime. Node 20 or newer is required.

License

MIT — see LICENSE. Third-party components installed by init are licensed by their respective authors; see credits/README.md in the parent repository.