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

@codacy/verity-cli

v0.28.1

Published

CLI for Verity quality gate service

Readme

@codacy/verity-cli

CLI for Verity — a compounding quality system for AI-generated code.

Install

npm install -g @codacy/verity-cli
cd your-project
verity init

Then open the project in Claude Code and run /verity-setup.

Permission denied?

If npm install -g fails with EACCES, your npm global directory needs fixing:

mkdir -p ~/.npm-global
npm config set prefix ~/.npm-global
echo 'export PATH=~/.npm-global/bin:$PATH' >> ~/.zshrc  # or ~/.bashrc
source ~/.zshrc
npm install -g @codacy/verity-cli

Upgrade

npm install -g @codacy/verity-cli@latest

Existing projects keep working — new compound features (knowledge extraction, graph memory, pre-work injection) activate automatically.

Coming from GATE.md (@codacy/gate-cli)?

GATE.md is now Verity. One-time switch:

npm rm -g @codacy/gate-cli
npm install -g @codacy/verity-cli
verity init   # per project — moves .gate→.verity, keeps your token, Standard & memory

No re-setup needed: your token, Standard, and run history all carry over.

Quick reference

| Command | Description | |---------|-------------| | Core | | | verity init | Initialize Verity in current project | | verity analyze | Run analysis on changed files (stop hook) | | verity analyze --mode <mode> | Force analysis mode (standard/plan/debug/skip) | | verity review --files <paths> | On-demand analysis (advisory) | | verity status | Show project quality status | | verity status --history | Show recent run history with findings summary | | verity run <run-id> | Show findings for a specific past run; --json for machine-readable output | | Auth & Config | | | verity auth register | Register a project | | verity hooks install | Wire Claude Code hooks | | verity standard push | Upload project Standard | | Knowledge | | | verity reflect | Trigger knowledge extraction for current task | | verity reflect --user-input "..." | Save a human reflection as a knowledge node | | verity reflect --kind decision | Specify the node kind | | Feedback | | | verity feedback message "text" | Send general feedback | | verity feedback finding <run-id> <pattern-id> <action> | Per-finding feedback | | Tasks | | | verity task list | List tasks | | verity task close | Close the current task (triggers extraction) |

Skills (Claude Code)

| Skill | Description | |-------|-------------| | /verity-setup | Project configuration wizard | | /verity-analyze | On-demand analysis | | /verity-status | Project health dashboard | | /verity-feedback | Feedback (general + per-finding) | | /verity-learn | View and manage project knowledge | | /verity-memory | Browse the knowledge graph | | /verity-insights | Quality metrics + Standard evolution | | /verity-reflect | Capture learnings after a task |

How it works

Prompt → inject knowledge → Agent works → verity analyze → reviewer + knowledge → PASS/FAIL
                                              ↓
                                     extract learnings → .verity/memory/ (graph)
                                              ↓
                                     next prompt starts smarter

The quality gate catches problems. The knowledge system prevents them from recurring. Every analysis run teaches the next one.

Requires Node.js 20+.