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

@aaaaorg/cronlint

v0.1.0

Published

Cron job cost & intelligence auditor for OpenClaw

Downloads

39

Readme

@aaaaorg/cronlint

Cron job cost & intelligence auditor for OpenClaw.

Analyzes your cron jobs and tells you which ones are wasting money on AI models when a bash script would do.

Install

npm install -g @aaaaorg/cronlint

Usage

cronlint                          # Audit all jobs (last 24h)
cronlint --hours 48               # Wider analysis window
cronlint --format json            # Machine-readable output
cronlint --min-savings 1.00       # Only show big savings

What it finds

| Classification | Meaning | Action | |---|---|---| | 🔧 bash-replaceable | Job runs a shell script — AI not needed | Replace with bash/cron | | ⚡ frequency-excessive | Runs too often for what it does | Reduce frequency | | 📉 model-downgrade | Uses Opus/Sonnet but Haiku would suffice | Switch to cheaper model | | ✅ right-sized | Job needs the model it's using | No action needed |

Example output

🔍 cronlint — Cron Job Audit

⚠️  Action Required (3 jobs)

🔧 watchdog-health (*/15 * * * *)
   bash-replaceable · model: claude-sonnet-4-5 · 96 runs/day · $2.88/day
   💡 Replace with bash script
   💰 Save: $86.40/month

⚡ rate-check (0 * * * *)
   frequency-excessive · model: claude-sonnet-4-5 · 24 runs/day · $0.72/day
   💡 Reduce from 24/day to 6/day
   💰 Save: $16.20/month

📊 Total potential savings: $102.60/month

Options

| Flag | Default | Description | |---|---|---| | --config | ~/.openclaw/openclaw.json | OpenClaw config path | | --jobs | ~/.openclaw/cron/jobs.json | Jobs file path | | --runs | ~/.openclaw/cron/runs | Runs directory | | --format | text | Output: text or json | | --hours | 24 | Analysis window | | --min-savings | 0.10 | Min daily savings to report |

How it works

  1. Reads your OpenClaw cron job definitions and run history
  2. Analyzes each job's prompt text with pattern matching
  3. Classifies by whether the task actually needs an AI model
  4. Estimates costs from run history and model pricing
  5. Reports actionable recommendations with savings estimates

License

MIT