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

sentinel-quality-client

v0.2.0

Published

Client library for x402 Sentinel — quality data for 12,000+ x402 endpoints

Downloads

257

Readme

sentinel-quality-client

Client library for x402 Sentinel — quality verification data for 12,000+ x402 endpoints.

Zero dependencies. Works in any Node.js environment.

Install

npm install sentinel-quality-client

Quick Start

import { sentinel } from 'sentinel-quality-client';

// List categories
const { categories } = await sentinel.catalog();
// → ["crypto-data", "web-scraping", "domain-check", ...]

// Find endpoints in a category, ranked by quality
const { endpoints } = await sentinel.catalog('web-scraping');
// → [{ url, quality_score, price, network, ... }, ...]

// Quick quality check
const badge = await sentinel.badge('https://some-endpoint.fly.dev/api');
// → { verified: true, score: 94, last_scanned: "2026-04-12" }

With API Key (for score + scan)

import { createSentinel } from 'sentinel-quality-client';

const sentinel = createSentinel({ apiKey: 'your-key' });

// Detailed breakdown
const score = await sentinel.score('https://some-endpoint.fly.dev/api');
// → { quality_score: 94, breakdown: { schema, temporal, cross_ref, llm_judge }, history: [...] }

// Fresh deep scan (10-30s)
const scan = await sentinel.scan('https://some-endpoint.fly.dev/api');
// → { quality_score, breakdown, raw_tests: [...] }

Agent Framework Examples

CrewAI / LangGraph

import { sentinel } from 'sentinel-quality-client';

// Agent picks the best endpoint for a task
async function findBestEndpoint(category) {
  const { endpoints } = await sentinel.catalog(category);
  const verified = endpoints.filter(e => e.quality_score >= 70);
  return verified[0]; // highest score
}

const best = await findBestEndpoint('web-scraping');
console.log(`Using ${best.url} (score: ${best.quality_score})`);

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | SENTINEL_API_KEY | For score/scan | API key for internal endpoints | | SENTINEL_URL | No | Custom Sentinel URL (default: https://x402-sentinel.fly.dev) |

API

sentinel.catalog(category?)

List categories or endpoints in a category. Free, no API key needed.

sentinel.badge(url)

Quick verified/not + score. Free, no API key needed.

sentinel.score(url)

Detailed breakdown + history. Requires API key.

sentinel.scan(url)

Fresh deep scan. Requires API key. Takes 10-30s.