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

harness-score

v1.0.0

Published

Deterministic AI coding harness-maturity scanner for AI-assisted repositories (Cursor-flagship, expanding to other AI-first dev tools). Zero LLM calls, zero network, zero runtime dependencies.

Readme

harness-score

Deterministic harness-maturity scanner for AI-assisted repositories — Cursor-first, zero LLM calls.

npm guide license

harness-score measures how well a repository is set up for reliable AI-assisted development: AGENTS.md, Cursor rules/skills/commands/subagents, hooks, tests/linters/types, CI, and secret hygiene. It scores 36 checks across 6 dimensions and reports a maturity level from L0 (Unharnessed) to L4 (Self-correcting).

The scan reads your filesystem and parses config — that's it. No network calls, no telemetry, no model in the loop. Same repo in, same score out, every time.

Full maturity model, check catalog, and remediation guide: paladini.github.io/harness-score

Install

# run once, no install
npx harness-score

# install globally
npm install -g harness-score
harness-score

# install as a dev dependency (recommended for CI reproducibility)
npm install --save-dev harness-score

Also published on GitHub Packages as @paladini/harness-score and on JSR for Deno/Bun users.

Usage

harness-score [path]              # human-readable report (default: cwd)
harness-score --json              # full report as JSON
harness-score --md report.md      # markdown report ("-" for stdout)
harness-score --badge badge.svg   # SVG pill: harness + detected level (L0–L4)
harness-score --min-level 3       # exit 1 if below L3 — the CI gate

Example:

  harness-score v1.0.0  /work/my-app

  Maturity: L2 · Guided   Score: 66/108 (61%)
  Detected: Cursor, Claude Code

  Context & Guides     ████████████████░░░░  80%
  Hooks & Guardrails   ░░░░░░░░░░░░░░░░░░░░   0%
  ...
  To reach L3: sensors ≥ 60%; ci ≥ 50%

Programmatic API

import { score } from 'harness-score';

const report = score('/path/to/repo');
console.log(report.level.index, report.level.name, report.score.percent);

Report, Check, DimensionScore, and every other shape are exported as TypeScript types, resolved via an explicit "types" field — no extra config needed in a consuming project. dist/ is a small, bundled build (tsup, ESM only); verified against attw and a packaging-level type smoke test in CI, and against a real npm pack install in an external project before each release.

CI gate

- run: npx harness-score --min-level 3

Or use the packaged GitHub Action, which also emits the badge.

Two branded SVG formats (README badge + share card). Copy-paste embeds: Embed snippets. Gallery and CI wiring: Show your maturity.

Cursor plugin

Install Harness Score from its plugin directory in this repo for a /harness-audit command and a remediation skill that fixes gaps directly in your editor. (Cursor Marketplace listing submitted, pending review.)

License

MIT — github.com/paladini/harness-score