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

@rsdoctor/agent-cli

v0.1.0

Published

`@rsdoctor/agent-cli` is a small command-line tool for reading Rsdoctor analysis data and exposing it as structured JSON.

Downloads

38,362

Readme

@rsdoctor/agent-cli

@rsdoctor/agent-cli is a small command-line tool for reading Rsdoctor analysis data and exposing it as structured JSON.

It is intended to be used together with the rsdoctor-analysis skill from agent-skills. Trigger that skill first, then use this CLI to inspect the generated Rsdoctor data.

To add the skill locally:

npx skills add rstackjs/agent-skills --skill rsdoctor-analysis

It provides two ways to work with the catalog:

  • list and query for machine-oriented access.
  • Direct group commands such as chunks list, modules by-id, and tree-shaking summary for interactive use.

Installation

pnpm add -D @rsdoctor/agent-cli

The package exposes a binary named rsdoctor-agent.

Usage

rsdoctor-agent --help
rsdoctor-agent list
rsdoctor-agent query <tool-name> --data-file <path>
rsdoctor-agent <group> <subcommand> --data-file <path>

Top-level commands

list

Prints all available subcommands in machine-readable JSON, including their descriptions and argument schemas.

rsdoctor-agent list

query

Executes one catalog tool by name and returns the result as JSON.

rsdoctor-agent query packages_duplicates \
  --data-file ./rsdoctor-data.json \
  --input '{"includeDev":true}' \
  --filter rule,totalRules \
  --page 1 \
  --page-size 20

Useful options:

  • --data-file <path>: path to the Rsdoctor data file.
  • --input <json>: tool input payload, defaulting to {}.
  • --filter <fields>: comma-separated field paths to keep in the output.
  • --page <n>: page number for paginated results.
  • --page-size <n>: page size for paginated results.

Direct commands

If you want to inspect a specific area of the report, you can call the grouped commands directly.

Examples:

rsdoctor-agent chunks list --data-file ./rsdoctor-data.json
rsdoctor-agent modules by-id --data-file ./rsdoctor-data.json --id 42
rsdoctor-agent packages list --data-file ./rsdoctor-data.json --page-number 1 --page-size 50
rsdoctor-agent tree-shaking summary --data-file ./rsdoctor-data.json

You can also inspect schemas and command descriptions:

rsdoctor-agent --describe
rsdoctor-agent --schema chunks.list
rsdoctor-agent chunks --describe

Output

  • Successful commands print JSON to stdout.
  • Errors are printed to stderr and the process exits with a non-zero code.
  • The --compact flag prints minified JSON for commands that support it.

Development

pnpm install
pnpm --filter @rsdoctor/agent-cli run build
pnpm --filter @rsdoctor/agent-cli run test

Repository

This package lives in the packages/agent-cli workspace and is part of the Rsdoctor monorepo.