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

@rallycry/conveyor-skills

v0.1.1

Published

Shared Claude Code skills for Conveyor consumer repos, linked into .claude/skills via the conveyor-skills CLI

Readme

@rallycry/conveyor-skills

Shared Claude Code skills for projects managed with Conveyor. Installing this package and linking it once gives every Claude Code session in your repo the Conveyor workflow skills (/conveyor-plan, /conveyor-local-loop, …), and updates arrive through normal dependency bumps — no git submodules, no manual syncing.

Skills

| Skill | Invoke | What it does | | --- | --- | --- | | conveyor-workflows | auto-triggers on Conveyor questions | The guide: connect/repair the MCP, create and classify cards, packs, builds, the two PR paths, review flows, reliability gotchas | | conveyor-plan | /conveyor-plan <idea> | Research an idea into a context-free, immediately-buildable Conveyor card | | conveyor-local-loop | /loop /conveyor-local-loop | Run this machine as a serial local agent: claim Open cards, build to PR, repeat |

Install (once per repo)

bun add -d @rallycry/conveyor-skills     # or: pnpm add -D / npm i -D
bunx conveyor-skills link                # or: pnpm exec / npx conveyor-skills link

Then make it stick:

  1. Add the link step to your root package.json prepare script so every install refreshes the links (new skills in a version bump appear automatically; prepare runs at the end of every bun install — nobody ever runs it by hand):

    { "scripts": { "prepare": "conveyor-skills link" } }

    If you already have a prepare script, chain it: "husky && conveyor-skills link".

  2. Commit the symlinks it created in .claude/skills/. They point into node_modules, so on a fresh clone they are briefly broken — Claude Code silently ignores broken symlinks — and come alive as soon as the first install finishes. Committing them means CI agents and teammates get the skills with zero extra setup.

How updates flow

Skill content is read live from node_modules, so any dependency bump (bun update @rallycry/conveyor-skills, Renovate/Dependabot, a ^ range refresh) updates the skills with no further action. Re-linking is only needed when a version adds or removes a skill — which the prepare hook already covers.

What link does (and won't do)

conveyor-skills link writes one relative symlink per skill into <repo>/.claude/skills/, pointing at the stable node_modules/@rallycry/conveyor-skills/skills/<name> path. It is idempotent and safe:

  • It only ever replaces or prunes symlinks it owns (target contains conveyor-skills/skills/).
  • A real directory or a foreign symlink with the same name is left alone with a warning — your local skills always win.
  • conveyor-skills link --check verifies the links without changing anything (exit 1 when out of date) — useful in CI.

Versioning

Versions are cut automatically from git tags on the Conveyor repo's main branch (conveyor-skills-v<semver>); every shipped-source change publishes a patch release. Consume with a ^ range and bump like any other dependency.