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

dsh-rerun-grader-judge

v0.1.2

Published

Grader provider scoring an attempt with a separately pinned judge model against a fixed rubric

Readme

dsh-rerun-grader-judge

Grader provider scoring an attempt with a separately pinned judge model against a fixed rubric.

This is the least trustworthy grader in the box and is built to admit it. Reach for command, file, and invariant first; use this only where the question genuinely has no objective form.

Three properties keep it from quietly corrupting a trend:

  • The judge route is pinned in THIS plugin's config, never taken from the variant. The harness under test must not grade itself, and two variants must not be scored by two different judges.
  • Its identity is stamped into every verdict's detail, alongside the vote spread — a wide spread means the rubric is ambiguous, not that the attempt was borderline.
  • k votes, reduced by median. One sample from a stochastic grader is a coin flip wearing a number.

Off by default. When you enable it, keep a small human-labelled subset and check agreement periodically; when agreement drops, every score it produced is void.

- id: rerun-grader-judge
  name: 'dsh-rerun-grader-judge'
  config:
    provider: deepseek-official
    model: deepseek-v4-pro
    votes: 3
    redact: ['sk-[A-Za-z0-9]{16,}']

Model Experience

This package DOES send model requests — the only one in rerun that does. They go to a route pinned in its own config, entirely separate from the variants' routes, and carry the rubric, the task prompt, the attempt's tool sequence, and its workspace diff. Nothing it sends reaches the harness under test.

It is also the one place rerun hands workspace contents to a third party; redact patterns are applied to everything before it leaves the process.

KV Cache effect

None on the harness under test. Its own requests share a constant system prompt prefix, so a provider that caches will see the rubric-and-instructions prefix repeat across votes.

Known Limitations and Deferred Work

  • The judge drifts. Nothing in this package detects it. Human-agreement sampling is a documented discipline, not a mechanism — the deferred work is a judge-agreement check that fails a run when agreement drops below a threshold.
  • No redaction rules ship by default. A rule the package guessed at would give false confidence; the deployment knows what its own tasks contain.
  • A failed judge call scores zero, which is indistinguishable in the aggregate from a genuinely bad attempt. The detail says which, but the number does not.