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

rigjs

v4.1.8

Published

A multi-repos dev tool based on yarn and git.Rigjs is intended to be the simplest way to develop,share and deliver codes between different developers or different projects.

Readme

Rig

Rig is an agent-facing macOS CLI for git-based multi-repo development, local LLM wikis, file-backed agent orchestration, and bidirectional Claude Code ↔ Codex handoff.

中文

Install

Requires macOS and Node.js 22–26.

npx --yes rigjs@latest setup

This one command installs a user-wide rig CLI under ~/.rig, adds it to new zsh sessions, and installs the Rig skill for detected Codex and Claude Code installations. Open a new terminal and start a new agent task afterward.

Agent Skills

Rig ships eight Agent Skills. Seven are discoverable through the open Agent Skills CLI; rig-crew is bundled and installed together with rig-wiki by Rig.

| Skill | What it teaches the agent | Target | Install route | |---|---|---|---| | rig | Choose and operate the right Rig command family | Codex, Claude Code | rigjs setup or skills add | | rig-wiki | Ingest, retrieve, lint, and rebuild a local LLM wiki | Codex, Claude Code | skills add or Wiki installer | | rig-crew | Coordinate file-backed multi-agent work | Claude globally; Codex/Claude per project | Wiki installer | | rig-package | Manage Git-tagged dependencies and local development | Codex, Claude Code | skills add | | rig-cicd | Build and publish static sites to Aliyun OSS/CDN | Codex, Claude Code | skills add | | handoff | Copy the current JSONL path for the other agent without a model summary | Codex, Claude Code | Handoff installer | | rig-from-claude | Recover local Claude JSONL and continue the task | Codex | Handoff installer | | rig-from-codex | Recover local Codex rollout JSONL and continue the task | Claude Code | Handoff installer |

List the Skills that the standard CLI can discover:

npx --yes skills add FlashHand/rig --list

Install one standalone Skill globally:

npx --yes skills add FlashHand/rig \
  --skill rig-package \
  -g -a codex -a claude-code -y

Install several standalone Skills at once:

npx --yes skills add FlashHand/rig \
  --skill rig \
  --skill rig-wiki \
  --skill rig-package \
  --skill rig-cicd \
  -g -a codex -a claude-code -y

If you want both rig-wiki and rig-crew, use Rig's paired installer instead of installing rig-wiki separately:

rig wiki install-skill             # user-level Claude Code
rig wiki install-skill --project   # current project: Codex + Claude Code

The handoff feature is one shared sender Skill plus two JSONL format adapters. It is managed across both agents because it also needs Claude and Codex hooks plus a stable launcher:

rig handoff install
rig handoff doctor

handoff is the one user-facing canonical Skill linked into both agents: invoke /handoff in Claude Code or $handoff in Codex. The two internal rig-from-* receiver adapters remain separate because Claude and Codex use different JSONL schemas. The installer sets Claude's skillOverrides.handoff to user-invocable-only, matching Codex's non-implicit policy, so neither agent may decide to change the clipboard on its own.

Do not install the sender or receiver directories with skills add alone; that does not configure the hooks and launcher required for a complete handoff.

Teach your agent

Copy the bundled operating guide and paste it into Claude Code, Codex, or any other coding agent:

rig guide --copy

The guide is designed for the agent, so you do not need to learn the full CLI. To print it instead, run rig guide; rig man is an alias. The checked-in copy is RIG_GUIDE.md.

Continue Claude work in Codex

After rig handoff install, enter /handoff in Claude Code, then paste the copied handoff into Codex. Codex's $rig-from-claude skill reads the local JSONL newest-first, recovers the objective, decisions, edits, tool results, errors, and unfinished work, checks them against the current workspace, and continues the task. A StopFailure hook also creates the handoff after token, quota, billing, authentication, or output-limit failures, without asking Claude for a summary.

If Claude is no longer interactive, run rig handoff copy --latest in a terminal and paste the result into Codex.

Continue Codex work in Claude Code

After installation, open /hooks in Codex once and trust Rig's UserPromptSubmit hook. Enter $handoff in Codex, then paste the copied handoff into Claude Code. The hook copies the exact rollout path, working directory, and session ID and stops that prompt before a model call. Claude's rig-from-codex Skill reads only the newest useful dialogue, tool results, file edits, and unfinished state; private reasoning, encrypted content, runtime instructions, world state, and token telemetry are omitted.

Codex does not expose a StopFailure equivalent for quota failures, but the local $handoff hook still runs before a model request and writes the exact rollout pointer. Ordinary prompts do not update that shared pointer, so a subagent cannot replace the main task. If the Codex UI is unavailable, run:

rig handoff from-codex copy --latest --cwd "$PWD"

Then paste the clipboard into Claude Code.

Start here

rig help                 # command index
rig guide                # full agent guide
rig setup                # install/update CLI + Rig skill
rig init                 # initialize git dependency management in a project
rig dev <dependency>     # develop a dependency locally
rig handoff install      # install bidirectional Claude Code ↔ Codex handoff
rig handoff doctor       # verify both hooks, one sender, and two adapters

For any command family, use rig help <command> and rig <command> <subcommand> --help.

License: MIT