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

@zh-npm/claude-authenticity-detector

v0.1.0

Published

Validate whether an API relay/proxy is serving authentic Claude models

Downloads

14

Readme

@zh-npm/claude-authenticity-detector

Verify whether an API endpoint is serving a genuine Anthropic Claude model.

Probes an API endpoint's streaming behavior, thinking capabilities, token usage, and identity signals to detect whether it serves an authentic Claude model or a relay/proxy substituting a different model.


Installation

npm install -g @zh-npm/claude-authenticity-detector

Or run directly with npx:

npx @zh-npm/claude-authenticity-detector --url https://api.anthropic.com --api-key sk-ant-... --model claude-opus-4-6

CLI Usage

claude-authenticity-detector --url https://api.anthropic.com --api-key sk-ant-...

Flags

| Flag | Default | Description | |------|---------|-------------| | --url | https://api.anthropic.com | Base URL of the API endpoint | | --api-key | $ANTHROPIC_API_KEY | Anthropic API key (falls back to env var) | | --model | claude-opus-4-6 | Model identifier to probe | | --timeout | 120000 | Request timeout in milliseconds | | --verbose | false | Print detailed probe events |

Scoring

The detector runs 5 checks, producing a score from 0 to 100:

| Check | Points | What it measures | |-------|--------|------------------| | Knowledge Cutoff | 0 -- 50 | Whether the model's stated knowledge cutoff matches known Claude dates | | SSE Shape | 0 -- 20 | Whether the streaming event sequence matches Anthropic's SSE protocol | | Thinking Block | 0 -- 15 | Presence and structure of extended-thinking content blocks | | Usage Fields | 0 -- 15 | Correct input/output token usage reporting across stream events | | Identity Penalties | -25 -- 0 | Deductions for identity inconsistencies (wrong model name, non-Claude claims) |

Confidence Levels

| Level | Score Range | |-------|-------------| | HIGH | >= 80 | | MEDIUM | 60 -- 79 | | LOW | 35 -- 59 | | VERY_LOW | < 35 |

Exit Codes

| Code | Meaning | |------|---------| | 0 | HIGH or MEDIUM confidence | | 1 | LOW or VERY_LOW confidence | | 2 | Error (network failure, invalid key, timeout, etc.) |

Programmatic Usage

import { runDetection } from '@zh-npm/claude-authenticity-detector';

const { report, error } = await runDetection({
  url: 'https://api.anthropic.com',
  apiKey: 'your-api-key',
  model: 'claude-opus-4-6',
  timeout: 120000,
  verbose: false,
});

console.log(report.totalScore, report.confidence);

License

Apache-2.0