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

@intentsolutionsio/j-rig

v0.1.0

Published

Skill Refiner — the eval-guided SKILL.md improvement loop, delivered as a thin wrapper over the published @intentsolutions/refiner CLI with a 3-layer cost-tiered hook architecture (sinker/line/hook)

Downloads

28

Readme

j-rig — Skill Refiner

The Skill Refiner: an eval-guided improvement loop for SKILL.md files, delivered as a Claude Code plugin. Second product in the Intent Solutions agent-rig stack — J-Rig Skill Binary Eval (test) → Skill Refiner (improve) → Rollout Gate (ship).

The refiner proposes safe, minimal, bounded edits (add / delete / replace ops) to a skill and accepts an edit only if a held-out eval score strictly improves with no regression on any other case. It is a thin wrapper over the published @intentsolutions/refiner package (the j-rig refine command group in @intentsolutions/jrig-cli); it does not reimplement refiner logic.

Install

In Claude Code:

/plugin install j-rig@claude-code-plugins-plus

Then install the CLI the subcommands wrap:

npm install -g @intentsolutions/jrig-cli   # gives you the `j-rig` command

Subcommands

Each /j-rig subcommand is a thin wrapper over a j-rig refine verb. Run them against a skill directory (the folder containing the SKILL.md).

| Subcommand | Underlying CLI verb | Purpose | | --- | --- | --- | | refine bootstrap <skill-dir> | j-rig refine bootstrap | Synthesize a held-out eval set. | | refine score <skill-dir> | j-rig refine score | Score via j-rig eval (Haiku/Sonnet; never Opus). | | refine propose <skill-dir> | j-rig refine propose | Propose one bounded edit; shadow-validate it. | | refine promote <skill-dir> | j-rig refine apply | Apply an accepted proposal → new version (human-gated). | | refine status <skill-id> | j-rig refine status | Show the refiner store + event log. |

The 3-layer cost-tiered hooks (sinker · line · hook)

| Layer | Event | Fires | Mechanism | Cost | | --- | --- | --- | --- | --- | | Sinker (L1) | PostToolUse: Edit\|Write | on any SKILL.md edit | deterministic validate-skillmd Tier-2 check | $0 | | Line (L2) | Stop | at end of turn | capture rollouts → background refiner after N | $ | | Hook (L3) | PreToolUse: Bash | before git commit/push on a staged SKILL.md | agentic gate, can block via exit 2 | $$ (rate-limited) |

Why L3 is PreToolUse:Bash: only PreToolUse is in the Anthropic hooks "Can block" allowlist. PostToolUse:Bash fires after the commit already ran and cannot prevent it. The L3 Opus gate is rate-limited (default 5 min) to control cost.

See skills/j-rig/SKILL.md for the full reference.

License

Apache-2.0 © Jeremy Longshore / Intent Solutions