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

ep-qualify

v0.1.2

Published

Thin offline CLI for fail-closed EMILIA Gate Qualification v2 evaluation. Prints QUALIFIED, NOT_QUALIFIED, or INDETERMINATE and exits 0 only for QUALIFIED; it does not authorize, invoke providers, or mutate state.

Readme

ep-qualify

ep-qualify is a thin, offline command-line interface over EMILIA Gate Qualification v2's evaluateQualification. It verifies and evaluates a supplied qualification graph without fetching evidence, invoking a model or provider, reserving or consuming anything, or mutating storage.

Usage

npx ep-qualify qualification.json

Use - to read from standard input:

ep-qualify - < qualification.json

The input must be exactly one JSON object with both fields:

{
  "bundle": {},
  "context": {}
}

bundle is the complete Gate Qualification v2 evidence graph. context supplies the expected candidate, assignment, policy, protected-request and status-authority bindings, freshness limits, minimum model-pinning strength, and explicit trust policies used by evaluateQualification.

The CLI never infers trusted keys from the bundle and supplies no trust defaults. The caller is responsible for obtaining and pinning the context.trust policy independently; placing keys in this input does not by itself establish their provenance. The CLI also does not fetch current time or status: evaluation is relative to the supplied context.now and status observation.

Input is limited to 8 MiB, decoded as strict UTF-8, checked with @emilia-protocol/verify/strict-json, and rejected on malformed JSON, duplicate object member names, or excessive JSON nesting before evaluation.

Output and exit status

Every evaluation prints exactly two lines (the JSON below is abridged):

QUALIFIED
{"decision":"QUALIFIED","reason":"qualified","verification":"VERIFIED","acceptance":"ACCEPTED"}

The second line is the complete machine-readable decision returned by the evaluator. Input and CLI failures produce an INDETERMINATE decision with a machine-readable reason.

  • QUALIFIED means the supplied evidence graph verifies, is accepted under the supplied trust policy, is bound to the supplied context, and is current as observed. Exit status: 0.
  • NOT_QUALIFIED is a closed refusal when the evaluator has a definitive disqualifying result, such as revocation. Exit status: 1.
  • INDETERMINATE means qualification could not be established, including stale, malformed, incomplete, untrusted, or unverifiable input. Exit status: 1.

QUALIFIED is a verification result, not an authorization decision. It does not grant permission, establish legality or business appropriateness, invoke an action, or claim that an action was reserved, consumed, or executed.

Development

npm test

The CLI tests mint a complete signed fixture and cover valid qualification, signed-artifact tampering, stale and revoked status, indeterminate evaluation, malformed and duplicate-key input, the input-size bound, immutable input bytes, and absence of implicit trust.