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

hellhound-cli

v1.0.5

Published

Automation monitoring that never sleeps. Monitors Make.com scenarios, n8n workflows, Zapier zaps, AI agents, and CLI scripts. Alerts you by email, Slack, or SMS when something breaks silently.

Readme

hellhound-cli

Monitor Make.com scenarios, n8n workflows, Zapier zaps, AI agents, and CLI scripts. Get alerted by email, Slack, or SMS when something breaks.

Full docs: https://hellhound.dev/docs

Install

npm install -g hellhound-cli

Requires Node.js 18+.

Quick start

hellhound init
hellhound watch --name "lead-pipeline" --run "node agent.js"
hellhound alert add --name "lead-pipeline" --channel email --to [email protected]

What it monitors

CLI scripts and agents — wrap any command, zero code changes:

hellhound watch --name "invoice-processor" --run "node process.js"
hellhound watch --name "daily-report"      --run "python report.py"
hellhound watch --name "backup-job"        --run "./backup.sh"

# Long-running agents with heartbeat monitoring
hellhound attach --name "support-bot" --run "node bot.js"

Make.com, n8n, Zapier, Activepieces — add two HTTP modules to your scenario, nothing else changes:

POST https://hellhound.dev/api/webhook/run-start
POST https://hellhound.dev/api/webhook/run-end

Setup guide: https://hellhound.dev/docs/make

What it detects

Hellhound learns what normal looks like over the first 10 runs then alerts on significant deviations:

  • Crash or non-zero exit code — immediate alert
  • Output 90%+ shorter than baseline — silent failure detection
  • Duration 10x+ slower than baseline — stuck or frozen automation
  • run-end never received — hung scenario detection
  • Error keywords in output — "failed", "error", "timeout"
  • Heartbeat missed — long-running agent went quiet

Day-to-day variation does not trigger alerts. Only extreme outliers do.

Alert channels

hellhound alert add --name "my-agent" --channel email --to [email protected]
hellhound alert add --name "my-agent" --channel slack --to "https://hooks.slack.com/..."
hellhound alert add --name "my-agent" --channel sms   --to +14155552671

All commands

hellhound init
hellhound watch  --name <n> --run <command>
hellhound attach --name <n> --run <command>
hellhound attach --name <n> --pid <pid>
hellhound alert add    --name <n> --channel <email|slack|sms> --to <dest>
hellhound alert list   --name <n>
hellhound alert remove --name <n> --id <id>
hellhound logs   --name <n> [--limit 50]
hellhound status
hellhound dashboard

CI/CD

# GitHub Actions — use secret instead of config file
HELLHOUND_API_KEY=${{ secrets.HELLHOUND_API_KEY }} \
  hellhound watch --name "deploy" --run "./deploy.sh"

Crontab

# Before
*/15 * * * * node /home/user/pipeline.js

# After — zero changes to pipeline.js
*/15 * * * * hellhound watch --name "pipeline" --run "node /home/user/pipeline.js"

Environment variables

HELLHOUND_API_KEY    API key — overrides config file

Docs

  • Getting started: https://hellhound.dev/docs
  • CLI reference: https://hellhound.dev/docs/cli
  • Make.com setup: https://hellhound.dev/docs/make
  • API reference: https://hellhound.dev/docs/api
  • Support: [email protected]

License

UNLICENSED — © Zerostone Digital