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

@devshop/crew

v0.12.0

Published

Project-agnostic Claude Code skills for spec → implement → qa → review → ship

Readme

crew

Project-agnostic Claude Code skills for spec → implement → qa → review → ship.

Install

Public on npmjs.com — no registry config or token needed.

npx @devshop/crew@latest init

Or as a project dev dependency:

pnpm add -D @devshop/crew
pnpm exec crew init

To pull newer skill content later, run pnpm exec crew update. The flow:

  1. Auto-detects the package manager (pnpm / npm / yarn / bun) from your lockfile and runs <pm> update @devshop/crew to bump the package within the range you've pinned in package.json. To always pull the absolute newest (including across major versions), set the range to "latest"; for "any 0.x" use "0.x".
  2. Re-execs the freshly-installed CLI.
  3. Computes the diff and prints a plan: which skills will be added, updated, replaced (had local edits), or removed (no longer in the package).
  4. Prompts Apply these changes? [Y/n]. Default Y. Press n to abort with no writes.
  5. Prompts Back up current versions to .bak/<utc>/? [y/N]. Default N. Press y to keep a snapshot of the pre-change state.
  6. Applies the changes — including removing skills the package no longer ships.

--yes makes it non-interactive and CI-safe (auto-applies, defaults backup to Y to protect against accidentally clobbering edits in CI). --force is destructive: auto-applies and skips backup. --dry-run shows the plan without writing. --no-self-update skips step 1 (only re-applies what's already on disk from the existing local install).

This copies the skills into ./.claude/skills/, writes a manifest, and appends a ## Workflow Config block to CLAUDE.md (creating it if absent).

Commands

crew init      [--global] [--force] [--yes] [--dry-run] [--no-claude-md]
crew update    [--global] [--force] [--yes] [--dry-run]
crew uninstall [--global] [--dry-run]
crew list      [--global]
crew doctor    [--global]

| Flag | Effect | |---|---| | --global | Target ~/.claude/skills/ (no CLAUDE.md handling). | | --force | Override prompts and refusals (silently absorbs foreign collisions, replaces edits). | | --yes | Non-interactive (CI-safe). On init, refuses foreign collisions; on update, defaults edited skills to backup-and-replace. | | --dry-run | Print actions, write nothing. Exits 1 if errors would have occurred. | | --no-claude-md | On init only: skip the CLAUDE.md append. |

How conflicts are resolved

The CLI tracks a per-skill SHA-256 in .claude/skills/.skills-manifest.json. Each skill folder is in one of four states:

  • missing — not at the target.
  • managed-unchanged — present, in manifest, hash matches.
  • managed-edited — present, in manifest, you've edited it.
  • foreign — present but not in the manifest.

update will never touch foreign skills. On init, when foreign collisions are detected (a folder with the same name as a skill we ship, but not in our manifest), interactive runs prompt with the list and ask [y/N] to absorb them; --force absorbs silently; --yes refuses (CI-safe). Absorbed originals are backed up to .claude/skills/.bak/<utc>/<skill>/. This is the bright line that keeps update boring.

For edited skills:

  • update (default) → prompts: backup-and-replace / keep / replace.
  • update --yes → backup-and-replace.
  • update --force → replace, no backup.

Exit codes

| Code | Meaning | |---|---| | 0 | Success. | | 1 | Refused due to a conflict you must resolve. | | 2 | Invalid usage (or no project markers in cwd). | | 3 | I/O error. | | 4 | Manifest corrupt. |

Maintainer publish

Releases are automated. Push a conventional-commit message (feat:, fix:, BREAKING CHANGE:) to main and .github/workflows/ci.yml runs semantic-release: computes the next semver, bumps package.json, prepends a CHANGELOG.md entry, tags vX.Y.Z, publishes to npmjs.com, and creates a GitHub release. The NPM_TOKEN repo secret authenticates the npm publish.

License

MIT.