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

@xpaysh/lint-wellknowns

v0.1.0

Published

CI linter that fails the build when a plugin emits a fictitious well-known URI or agent-discovery file (no spec, no RFC, no IANA registration). Enforces the real-standards-only design principle of the agentic-commerce-for-* plugin family. Run `npx lint-we

Readme

@xpaysh/lint-wellknowns

CI linter that enforces the real-standards-only design principle of the agentic-commerce-for-* plugin family.

Every plugin in the family commits to emitting only discovery files / URIs that trace to a published spec or RFC. This package codifies the deny-list, scans source trees for accidental references, and probes a running storefront over HTTP.

The lists

Banned (fictitious — no spec, no RFC, no IANA registration):

| Path | Why it's banned | |---|---| | /.well-known/agentic-commerce.json | ACP defines no discovery file. Capability negotiation happens per-session in POST /checkout_sessions. | | /.well-known/ucp.json | Wrong filename. Real path is /.well-known/ucp (no extension), per ucp.dev. | | /.well-known/acp.json | ACP has no well-known file. | | /.well-known/ap2.json | AP2 uses A2A message envelopes, not a manifest. | | /.well-known/mcp.json | MCP servers advertise via their own endpoint URL. | | /.well-known/ai-plugin.json | Deprecated. OpenAI retired the ChatGPT plugin manifest. | | /agents.txt | No RFC. Use /llms.txt. | | /ai.txt | No RFC. |

Allowed (real):

| Path | Spec | |---|---| | /llms.txt | llmstxt.org | | /robots.txt | RFC 9309 | | /.well-known/ucp | ucp.dev / Google UCP profile guide | | /.well-known/agent-card.json | A2A 1.0 (IANA-registered 2025-08-01) | | /.well-known/oauth-protected-resource | RFC 9728 |

Install

npm install --save-dev @xpaysh/lint-wellknowns

CLI

# Scan the current directory's source tree
npx lint-wellknowns scan

# Probe a running storefront
npx lint-wellknowns probe https://shop.example.com

# Print the canonical deny-list + allow-list
npx lint-wellknowns list

# Emit GitHub Actions inline-annotations on findings (use in CI)
npx lint-wellknowns scan --github

Exit codes: 0 = clean, 1 = findings (CI fails), 2 = usage error.

Programmatic API

const { scanDirectory, probeStorefront, FICTITIOUS_PATHS } = require('@xpaysh/lint-wellknowns');

// Static scan
const { findings, scannedFileCount } = scanDirectory({ rootDir: process.cwd() });

// HTTP probe (Node >= 18, uses global fetch)
const liveFindings = await probeStorefront({ baseUrl: 'https://shop.example.com' });

GitHub Actions

A reusable composite action is published from the template repo at .github/actions/lint-wellknowns/. Plugins reference it like:

- uses: xpaysh/agentic-commerce-plugin-template/.github/actions/lint-wellknowns@main
  with:
    target: ./src

Documentation references

The scanner matches plain string occurrences — including inside comments and docs. If you have a file that legitimately documents the deny-list (e.g. an alternate impl of the same check, or a "why this is banned" comment), exclude it with --ignore-file <basename> or a CI workflow filter.

License

Apache-2.0.