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

govalidate-lite

v1.1.2

Published

Local CSV and Excel checks for coding agents. npx installs the data-validation-rules skill. Files stay on your machine.

Readme

govalidate-lite

Local CSV and Excel checks for coding agents. npx installs the data-validation-rules skill. Files stay on your machine. See https://govalidate.ai/skill/.

Requirements

| | Needed for | If missing | |--|-----------|-----------| | Node 20 or newer | running the installer | nothing installs | | Python 3.8 or newer, as python3 on PATH | the bin/dq_*.py helpers | the skill still installs and its checklist still works; the helpers fail |

The installer checks for python3 and says so in its report when it is absent. A missing Python does not stop the install: the checklist and doctrine are the part your agent reads, and they need nothing but the file.

Install

npx govalidate-lite

That is the whole path. There is no install subcommand. With no options the tool:

  1. Detects which agent skill directories exist under the current working directory
  2. If none exist, creates .claude/skills
  3. Writes the skill, its doctrine reference, and five executable helpers
  4. Prints one line naming what was installed, where, and what to do next

A second run reports that the installation is already current and does not rewrite files.

Options

npx govalidate-lite --check                 # report; write nothing
npx govalidate-lite --json                  # machine-readable result
npx govalidate-lite --target=/path/to/repo  # install into another directory
npx govalidate-lite --roots=claude,codex    # explicit root subset

--roots accepts: claude, codex, cursor, github, agents.

What lands on disk

Under each selected root, as data-validation-rules/:

| Path | Role | |------|------| | SKILL.md | Agent skill (always-on checklist + load scorecard) | | references/doctrine-full.md | Full judgement (repair, reconcile, privacy, evidence) | | bin/dq_*.py | Optional stdlib-only helpers (mode 0755) |

Helpers (from the skill directory, and they need python3):

python3 bin/dq_scorecard.py data.csv --json
python3 bin/dq_rows.py data.csv
python3 bin/dq_blanks.py data.csv
python3 bin/dq_grain.py data.csv
python3 bin/dq_rates.py data.csv

Licence

Apache-2.0. See LICENSE.