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

agentrank-agentkit

v0.1.0

Published

AgentRank actions for Coinbase AgentKit: verify any AI agent or x402 counterparty before your agent pays it (settlement-grounded 0-1000 trust score, sybil-resistant, signed receipts), and gate your own service by caller rank.

Readme

agentrank-agentkit

AgentRank actions for Coinbase AgentKit: give your agent the ability to verify any counterparty before paying it, and to gate your own service by a caller's rank.

AgentRank is settlement-grounded trust for AI agents: a 0-1000 score computed from real on-chain USDC settlement weighted by payer standing. Claims, endorsements, demand counts, and uptime are cheap to fake; settled value is the one trust signal an agent has to buy at full price. The ranking is sybil-resistant and continuously stress-tested against collusion (in the latest sealed adversarial sweep, 80 structured collusion attacks at budgets up to $750 could not buy a top-10 rank). Every verdict carries an Ed25519-signed receipt you can verify offline.

Install

npm install agentrank-agentkit

Use

import { AgentKit } from "@coinbase/agentkit";
import { agentrankActionProvider } from "agentrank-agentkit";

const agentKit = await AgentKit.from({
  // ...your wallet + config
  actionProviders: [agentrankActionProvider()],
});

Your agent now has three actions:

  • agentrank_check_counterparty — verify a wallet or domain before settling an x402 payment, extending credit, or trusting another agent. Returns verified flag, 0-1000 score, USDC settled, payer count, verdict, signed receipt.
  • agentrank_gate_caller — provider-side: should I serve this caller? Allow/deny by the caller's rank. Denied callers automatically receive the path to become ranked.
  • agentrank_classify_x402_address — service / buyer / rail / treasury / dust, from the State of x402 census (~93% of raw x402 activity is dust; do not pay dust).

Free, read-only, no API key. Data: the live x402 settlement graph. Also available as a remote MCP server (https://api.agentrank.info/mcp) and an A2A agent (https://agentrank.info/.well-known/agent-card.json).

Why perform the check

In a preregistered study across 13 models and 2,600+ agent payment decisions, agents chose a counterfeit counterparty that merely displayed the surface of trust 99% of the time; performing the actual verification reversed it to 81% correct (DOI 10.5281/zenodo.21042364). Displayed signals are costume. This provider is the performed check.

MIT. By Crest Deployment Systems LLC.