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

@kairenxyz/dealrail

v0.1.1

Published

CLI and SDK for DealRail procurement, negotiation, and escrow rails

Readme

@kairenxyz/dealrail

Publishable CLI and SDK package for DealRail.

It supports two modes:

  • Human mode: ASCII command deck output for terminal use
  • Agent mode: stable JSON with --json

Install

Preferred once published:

npx @kairenxyz/dealrail doctor --json
npx @kairenxyz/dealrail vend "benchmark report" --budget 0.12 --hours 24 --json

Global install:

npm install -g @kairenxyz/dealrail
dealrail help

Local project install:

npm install @kairenxyz/dealrail

If you want the client in code:

import { DealRailClient } from '@kairenxyz/dealrail';

const client = new DealRailClient('http://localhost:3001');
const health = await client.health();

Commands

dealrail help
dealrail demo
dealrail doctor
dealrail doctor --json
dealrail status
dealrail scan benchmark report
dealrail providers compliance checks --max-price 0.12
dealrail vend "benchmark report" --budget 0.12 --hours 24
dealrail vend "security review" --budget 0.20 --hours 48 --queue
dealrail rails
dealrail jobs --limit 8
dealrail job 12

Configuration

Set the API base URL with either:

export DEALRAIL_API_URL=http://localhost:3001

or:

dealrail status --api http://localhost:3001

Recommended operator flow:

dealrail doctor
dealrail vend "automation benchmark report" --budget 0.12 --hours 24
dealrail jobs --limit 4

Recommended agent flow:

dealrail doctor --json
dealrail vend "automation benchmark report" --budget 0.12 --hours 24 --json

Development

npm install
npm run check
npm run build
npm run pack:dry-run
npm run cli -- help
npm run demo
npm run demo:walkthrough
npm run start -- help

Publish

Before first publish:

  1. Run npm login
  2. Run npm run check
  3. Run npm run pack:dry-run
  4. Run npm publish --access public

npm docs:

  • https://docs.npmjs.com/about-scopes
  • https://docs.npmjs.com/creating-and-publishing-scoped-public-packages

Demo Walkthrough

A separate recordable CLI demo runner lives at demo/dealrail-demo.sh.

It animates typed commands, pauses between scenes, and runs a clean walkthrough for:

  • help
  • status
  • scan
  • vend
  • jobs
  • rails

Run it with:

cd cli
npm run build
npm run demo:walkthrough

Useful knobs for recording:

TYPE_SPEED=0.01 PAUSE_SHORT=0.8 PAUSE_LONG=1.6 npm run demo:walkthrough
DEALRAIL_API_URL=http://localhost:3001 npm run demo:walkthrough