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

robot-resources

v1.2.4

Published

Robot Resources — AI agent runtime tools. One command to install everything.

Readme

robot-resources — Unified Installer

One command to install all Robot Resources tools:

npx robot-resources

What the wizard does

  1. GitHub OAuth — authenticates via PKCE, saves API key to ~/.robot-resources/config.json
  2. Router install — detects Python 3.10+, creates venv, pip installs robot-resources-router
  3. Service registration — registers router as launchd (macOS) or systemd (Linux) service
  4. MCP auto-config — detects Claude Desktop and Cursor, injects scraper MCP entry

Adding a new tool

When you build a new product for RR, follow this checklist:

1. Create the npx entry point

Your tool needs an npm package with a bin entry that runs a setup wizard. Two patterns:

  • Node.js tool: Add bin to your package.json pointing to a setup script
  • Python tool: Create a thin npm wrapper (like router/packages/router/) that handles pip install

The wizard should:

  • Check ~/.robot-resources/config.json — offer login if missing
  • Install the tool
  • Configure MCP if applicable
  • Print usage instructions

2. Update the unified wizard

Edit packages/cli/lib/wizard.js to add your tool as a new step between service registration and MCP config.

3. Update the landing page

| File | What to change | |------|---------------| | web/src/pages/Landing/types.ts | Add install subsection if new section | | web/src/pages/Landing/components/ContentPanel/animatedContentScreens.ts | Add install screen (desktop + mobile) | | web/src/pages/Landing/components/TerminalPanel/terminalCommands.ts | Add install subcommand output |

4. Update agent-facing content

| File | What to change | |------|---------------| | web/public/llms.txt | Add tool with npx @robot-resources/<tool> | | web/public/llms-full.txt | Add detailed section with npx install | | web/public/.well-known/ai-resources.json | Add SoftwareApplication entry with InstallAction |

5. Update the publish workflow

Add your package.json path to .github/workflows/publish.yml triggers and add a publish step.

6. Add to root workspaces

Add your package directory to the workspaces array in the root package.json.

Architecture

packages/cli-core/    Shared auth, config, login (private — never published)
packages/cli/         This package (published as "robot-resources" on npm)
  bin/setup.js        Entry point
  lib/wizard.js       Orchestrator — add new tools here
  lib/service.js      launchd + systemd service registration
  lib/mcp-config.js   Agent detection + MCP JSON patching
  lib/python-bridge.js  Python venv management
  lib/detect.js       Environment detection
  lib/ui.js           Terminal formatting