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

@kontourai/veritas

v0.3.0

Published

Repo-local framework and CLI for making AI-assisted development easier to trust through adapters, policy packs, evidence, and evals.

Downloads

506

Readme

Veritas

npm version CI

Veritas is bespoke lint for AI agents. You define what your repo considers mandatory: which files must exist, which tests must pass when a contract changes, which AI instruction files must stay synchronized, and which governance files may never be weakened. When an agent finishes work, Veritas runs your rules and tells it exactly what it got wrong, like a linter would.

It works with any AI agent because the contract is repo-local: adapter, policy pack, proof lanes, hooks, and eval history live in your repository. No runtime dependencies beyond Node.

Quickstart

npm install -D @kontourai/veritas
npx veritas init
npx veritas budget --working-tree
npx veritas shadow run --working-tree

That bootstraps your repo with an adapter, policy pack, team profile, and AI instruction governance blocks, shows the current verification budget, then runs the first feedback check.

What You Get

  • Rules — repo-specific lint for agents: required artifacts, governance blocks, proof lanes, and diff-based companion changes
  • Feedback — terse PASS / FAIL / WARN output designed to go straight back into an agent's context window
  • Evidence — local reports with selected proof lanes, policy results, optional proof-family results, and verification budgets
  • Budgetingveritas budget shows required, candidate, advisory, move-to-test, retiring, stale, and triggerless proof families
  • Improvement — eval history so you can measure whether the guidance is helping over time

Caught In The Wild

In the work-agent case study shape, a rule can say: if src-server/api/ changes, tests/api/ must appear in the same diff. Without Veritas, an agent can finish with a green-looking implementation and no API proof. With Veritas:

FAIL  api-changes-require-test-changes: Changed files matched src-server/api/ but no companion changes matched tests/api/.
      -> src-server/api/projects.ts

That is the point: the agent sees the missing proof before it declares done.

Documentation

Repository Layout

  • bin/ — CLI entrypoints
  • src/ — framework logic
  • schemas/ — JSON schemas
  • docs/ — guides, design, reference
  • tests/ — smoke tests

Contributing

See CONTRIBUTING.md.

License

Apache-2.0