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

agent-ready-scanner

v0.2.0

Published

Command-line client for Agent Ready — scan any URL for AI-readability against the Vercel Agent Readability Spec, the llmstxt.org standard, and agent-protocol manifests. Wraps the agent-ready.dev REST API.

Readme

agent-ready-scanner

Command-line client for Agent Ready — scan any URL for AI-agent readability against the Vercel Agent Readability Spec, the llmstxt.org standard, and agent-protocol manifests (MCP server cards, A2A, agents.json, agent-permissions.json, UCP, x402, NLWeb).

It's a thin wrapper over the hosted agent-ready.dev REST API — no scanning happens locally. For tool-native access from an AI assistant, see agent-ready-mcp instead.

Install

npm install -g agent-ready-scanner

This installs the agent-ready command. Or run without installing:

npx agent-ready-scanner scan https://example.com

Why agent-ready-scanner? The bare agent-ready name is blocked by npm's package-name similarity policy (it collides with an unrelated agentready package). The installed command is still agent-ready.

Requires Node.js ≥ 20.10.

Authentication

scan, get, and list require a Pro API key. Issue one from the dashboard, then either:

export AGENT_READY_API_KEY="ar_live_..."
# or pass per-command:
agent-ready scan https://example.com --api-key ar_live_...

ask is public and needs no key.

Commands

scan <url>

Starts a scan, polls until it finishes, and prints a readability summary.

agent-ready scan https://example.com
agent-ready scan https://example.com --page-limit 25
agent-ready scan https://example.com --no-wait      # queue only, print the id
agent-ready scan https://example.com --json         # raw JSON

| Option | Description | | --- | --- | | --page-limit <n> | Max pages to crawl | | --no-wait | Queue the scan and print its id without polling | | --poll-interval <s> | Seconds between status polls (default 2) | | --timeout <s> | Max seconds to wait for completion (default 120) |

get <id>

Fetch a scan by id (e.g. one started earlier with --no-wait).

agent-ready get V1StGXR8_Z
agent-ready get V1StGXR8_Z --json

list

List your recent scans, newest first.

agent-ready list
agent-ready list --limit 5
agent-ready list --cursor 2026-05-30T00:00:00.000Z   # next page

ask <query...>

Natural-language search over Agent Ready's own docs (methodology, the check registry, supported specs). Public — no API key.

agent-ready ask "how is the score calculated?"
agent-ready ask "what does check S4 do?" --type checks
agent-ready ask "summarize the llms.txt requirements" --mode summarize

Global options

| Option | Description | | --- | --- | | --json | Output raw JSON instead of formatted text | | --api-key <key> | Override AGENT_READY_API_KEY | | --base-url <url> | Override AGENT_READY_API_URL (e.g. for local dev) | | --no-color | Disable coloured output (NO_COLOR is also honoured) | | -h, --help | Show help | | -v, --version | Show version |

Environment variables

| Variable | Default | Purpose | | --- | --- | --- | | AGENT_READY_API_KEY | — | Pro API key for scan/get/list | | AGENT_READY_API_URL | https://agent-ready.dev | API base URL | | AGENT_READY_SCAN_TIMEOUT_MS | 120000 | Overall scan wait budget | | AGENT_READY_GET_TIMEOUT_MS | 10000 | Per-request timeout |

Exit codes

| Code | Meaning | | --- | --- | | 0 | Success | | 1 | API error, scan failed, or scan timed out | | 2 | Usage error (bad arguments) |

--json output goes to stdout; progress and errors go to stderr, so you can safely pipe JSON into other tools.

Development

npm install
npm test          # vitest
npm run typecheck # tsc --noEmit
npm run build     # bundle to dist/cli.mjs

License

MIT © Agent Ready