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

veto-cli

v1.16.3

Published

Canonical Veto CLI for Studio and headless workflows

Readme

veto-cli

npm License

The canonical Veto CLI. Launch the interactive Veto Studio TUI or run headless policy operations in CI.

Install

npm install -g veto-cli

Or run without installing:

npx veto-cli@latest

Studio (interactive TUI)

veto              # launch Veto Studio
veto studio       # explicit

Full-screen terminal UI for managing policies, reviewing decisions, running tests, and monitoring agent activity in real time.

veto studio --renderer ansi              # force ANSI renderer
veto studio --directory ./packages/sdk   # open a specific workspace
veto studio --demo-template              # demo mode with example data

Policy commands

# Generate policy YAML from a plain-language description
veto policy generate \
  --tool transfer_funds \
  --prompt "block transfers over $500 to unverified recipients" \
  --save ./veto/rules/financial.yaml

# Apply a policy file locally
veto policy apply --file ./veto/rules/financial.yaml

# Push to Veto Cloud (creates a draft for review)
veto policy apply --file ./veto/rules/financial.yaml --target cloud

Guard check

Test a single tool call against your current rules — no agent needed.

veto guard check --tool transfer_funds --args '{"amount": 600}' --json
# {"decision":"block","rule":"block-large-transfers","reason":"amount 600 > threshold 500"}

veto guard check --tool git_push --args '{"branch":"main"}' --json
# {"decision":"ask","rule":"require-approval-for-push","reason":"targets main branch"}

Coverage scan

veto scan                        # show which tools have rules and which don't
veto scan --fail-uncovered       # exit 1 if any tool is unguarded (CI gate)
veto scan --suggest              # include inline YAML suggestions for uncovered tools
veto scan --include-examples     # include examples/ and tests/ in scope
veto scan --format json          # machine-readable output

Policy diff

veto diff financial.yaml                         # compare working file vs git HEAD
veto diff --old ./rules-v1 --new ./rules-v2      # compare two snapshots
veto diff financial.yaml --log calls.jsonl        # show impact on historical calls
veto diff --old ./rules-v1 --new ./rules-v2 \
  --log calls.jsonl --format json                 # structural + impact report

Cloud

veto cloud login     # authenticate with Veto Cloud (device flow)
veto cloud whoami    # show active account and org context

Other commands

veto init            # initialize Veto in the current project
veto doctor          # check runtime, auth, and connectivity
veto version         # show version

All commands

| Command | Description | |---------|-------------| | veto / veto studio | Interactive Veto Studio (TUI) | | veto policy generate | Generate policy YAML from natural language | | veto policy apply | Apply policy file locally or to Veto Cloud | | veto guard check | Validate a tool call against current rules | | veto scan | Coverage audit — which tools have rules | | veto diff | Show what changed between policy versions | | veto cloud login | Authenticate with Veto Cloud | | veto cloud whoami | Show cloud context | | veto init | Initialize Veto in a new project | | veto doctor | Diagnostics | | veto version | Show version |

Compatibility

veto-sdk still exposes the veto bin for legacy compatibility. veto-cli is the canonical package.

npx veto-cli@latest   # canonical
npx veto-sdk@latest   # legacy (still works)

License

Apache-2.0 © Plaw, Inc.