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

scoutagent

v2.0.0

Published

Installer for the cmdop CLI — stand up an AI agent on a machine you already have

Readme

scoutagent

cmdop — messenger for AI agents

Installer for the cmdop CLI — stand up an AI agent on a machine you already have.

npx scoutagent

That's it. scoutagent detects your platform, downloads the cmdop binary, verifies it against the published checksums, installs it, and hands over.

You almost certainly do not need to provision anything to try this. A laptop, an idle VPS, or the box already running something else is enough.

cmdop is one binary with no runtime dependencies, and this package is the shortest way to get it there: one npx command and you are done.

How does CMDOP compare? CMDOP Skills vs OpenClaw: two approaches to AI agent skills →

From nothing to a running agent in two commands

There is no account to create before the install works, no image to build, and no configuration file to write first. The install is a platform detection, a download, a checksum check, and a handover.

If it turns out not to be what you wanted, removing it is deleting one file from ~/.local/bin.

What is cmdop

One executable that is the agent, the relay, the local server and the web console at once. There is no gateway, backend, database server or broker to stand up — you add one binary to a machine you already own.

  • run an AI agent on your own machine, with your own tools
  • reach it from anywhere: terminal, files, remote execution
  • connect machines into a fleet
  • works with Claude Code and other agent engines under the hood

Full documentation: docs.cmdop.com

Usage

npx scoutagent                   # install cmdop (if needed), then run it
npm install -g scoutagent        # or install the command permanently

Once the command is available:

scoutagent                    # install cmdop (if needed), then run it
scoutagent --install-only     # install, don't hand over
scoutagent --prefix ~/bin     # choose the install directory
scoutagent --force            # reinstall even if already present
scoutagent --quiet            # print only the installed path
scoutagent -- --help          # everything after `--` goes to cmdop

Default install directory is ~/.local/bin (%LOCALAPPDATA%\cmdop\bin on Windows). No sudo, no system directories.

What it does, precisely

  1. Detects your OS and architecture.
  2. Fetches SHA256SUMS from install.cmdop.com.
  3. Downloads the matching binary to a temporary file.
  4. Verifies the SHA-256 against the published checksum. On mismatch it aborts and installs nothing.
  5. Moves the verified binary into the install directory and marks it executable.
  6. Runs it.

Supported: macOS (Apple Silicon, Intel), Linux (x64, arm64), Windows (x64).

Requires Node.js 18 or newer.

What it does not do

  • No side effects at install time. npm install scoutagent only unpacks files — there is no postinstall script. Nothing is downloaded or executed until you run scoutagent.
  • No network access on require. require('scoutagent') touches nothing.
  • No telemetry. The package sends no analytics, ever.
  • No dependencies. Node built-ins only, so there is nothing in this package's tree that can float onto a broken release. It declares no dependencies at all — not an empty object, no entry.

Node API

The installer is importable if you would rather script it:

const scoutagent = require('scoutagent');

const target = scoutagent.detect();
console.log(target.label, target.asset);

const result = await scoutagent.install();
console.log(result.path, result.sha256);

scoutagent.install() rejects with scoutagent.InstallError carrying a user-facing message on any failure, and scoutagent.detect() throws scoutagent.UnsupportedPlatform when there is no published binary for the current machine.

install() accepts { installDir, target, onProgress }; all three are optional.

Links

License

MIT