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

@getaimd/cli

v1.0.3

Published

Zero-friction CLI client for AIMD Marketplace — install packages, run SEM runbooks, and audit your workspace.

Readme

@getaimd/cli

The official CLI for AIMD Marketplace — install runbook packages, execute Self-Executing Markdown (SEM) files, and run security compliance audits on your workspace.

Installation

npm install -g @getaimd/cli

Quick Start

# Log in to your AIMD account
aimd login

# Initialize AIMD in your project
aimd init

# Install a runbook package from the registry
aimd install workspace-slug/listing-slug

# Run a Self-Executing Markdown runbook interactively
aimd run ./my-runbook.sem.md

# Scan your workspace for secrets, PII, and CVEs
aimd scan

Commands

| Command | Description | | :--- | :--- | | aimd login | Authenticate against your AIMD account | | aimd init | Initialize aimd.json config in the current directory | | aimd install [pkg] | Install a registry package or restore all aimd.json dependencies | | aimd run <file> | Start the interactive SEM step-by-step wizard | | aimd scan | Run a full compliance audit (secrets, PII, CVEs) | | aimd push | Run pre-flight scan and upload a new draft version | | aimd pull <id> | Download and restore a published version | | aimd keys <action> | Administer license keys (list, revoke, reset) | | aimd local <subcommand> | Manage offline cache of downloaded packages | | aimd test <file> | Validate a runbook before publishing | | aimd import <source> | Auto-convert a markdown guide into a SEM runbook |

Self-Executing Markdown (SEM)

AIMD runbooks are standard Markdown files with executable shell blocks. Tag a block with execute to make it runnable:

```bash execute
echo "Hello from AIMD!"
```

Run it interactively:

aimd run ./my-runbook.sem.md

The wizard walks you through each step, prompts for variables, and supports --resume to pick up where you left off.

Security & Compliance

aimd scan audits your workspace for:

  • Secrets — API keys, tokens, database URIs (Shannon entropy detection)
  • PII — emails, phone numbers, SSNs, credit card numbers (Luhn-validated)
  • CVEs — known vulnerabilities in npm, PyPI, and Go dependencies via Google OSV

Requirements

  • Node.js >= 18.0.0

License

MIT