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

@verist/cli

v0.1.1

Published

CLI for Verist workflows — replay, diff, and inspect AI decisions

Downloads

1,484

Readme

@verist/cli

npm version npm downloads Ask ChatGPT Twitter Follow

CLI for Verist workflows — replay, diff, and inspect AI decisions.

Install

bun add @verist/cli

Commands

verist init

Scaffold a working project with no API keys needed.

verist init

Creates verist.config.ts (or .mjs for Node) with a parse-contact step and sample input.

verist capture

Run a step against input files and save baselines.

verist capture --step extract --input "inputs/*.json"
verist capture --step extract --input "inputs/*.json" --label "v2-prompt"
verist capture --step extract --input "inputs/*.json" --sample 10 --seed 42

| Option | Description | | ------------------ | -------------------------------------------- | | --step <name> | Step name to execute (required) | | --input <glob> | Glob pattern for input JSON files (required) | | --workflow <id> | Workflow identifier (defaults to step name) | | --version <ver> | Workflow version (defaults to "0.0.0") | | --label <text> | Human-readable label for the baseline | | --no-commands | Skip capturing commands | | --sample <n> | Randomly sample n inputs from the glob | | --seed <n> | Seed for deterministic sampling (default: 0) | | --meta <key=val> | Attach metadata (repeatable) |

verist diff

Recompute baselines and show diffs (exploratory).

verist diff --step extract
verist diff --baseline .verist/baselines/extract/001.json
verist diff --step extract --format json

| Option | Description | | ------------------- | -------------------------------------------- | | --step <name> | Step name to recompute | | --baseline <path> | Path to specific baseline file or directory | | --workflow <id> | Workflow identifier for auto-resolution | | --version <ver> | Workflow version for auto-resolution | | --label <name> | Filter by metadata label | | --format <mode> | Output format: text, json, or markdown | | --meta <key=val> | Filter baselines by metadata (repeatable) |

verist replay

Inspect baselines and verify hash integrity.

verist replay --step extract
verist replay --step extract --verify
verist replay --baseline .verist/baselines/ --label "v2-prompt"

Use --verify to recompute hashes and check that stored content matches.

| Option | Description | | ------------------- | ----------------------------------------- | | --step <name> | Filter by step name | | --baseline <path> | Specific file or directory | | --label <name> | Filter by metadata label | | --workflow <id> | Workflow identifier | | --version <ver> | Workflow version | | --verify | Recompute hashes and check integrity | | --meta <key=val> | Filter baselines by metadata (repeatable) |

verist test

Recompute baselines and fail on regressions (CI mode).

Exit codes: 0 = clean, 1 = regressions detected, 2 = infrastructure failure.

Schema violations always trigger exit 1, independent of --no-fail-on-diff.

verist test --step extract
verist test --step extract --no-fail-on-diff
verist test --step extract --format json

| Option | Description | | ---------------------------- | -------------------------------------------- | | --step <name> | Step name to recompute | | --baseline <path> | Path to specific baseline file or directory | | --workflow <id> | Workflow identifier for auto-resolution | | --version <ver> | Workflow version for auto-resolution | | --label <name> | Filter by metadata label | | --format <mode> | Output format: text, json, or markdown | | --meta <key=val> | Filter baselines by metadata (repeatable) | | --no-fail-on-diff | Exit 0 even when value diffs are detected | | --no-fail-on-commands-diff | Ignore command diffs for exit code |

Global Options

  • --debug — show full error details
  • --quiet — suppress non-essential output

License

Apache-2.0