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

veriagent-openclaw

v0.1.6

Published

Browser-led VeriAgent onboarding and local certificate tools for OpenClaw.

Readme

veriagent-openclaw

OpenClaw-side local plugin wrapper for VeriAgent onboarding and certificate tools.

What it does

  • Starts VeriAgent browser-led onboarding
  • Reuses the terminal polling flow implemented in veriagent-nuxt/serve
  • Generates local CSR materials
  • Downloads and imports certificates
  • Exposes local sign and verify commands for agent certificates

Requirements

  • Node.js 18 or later
  • A reachable VeriAgent backend that exposes the plugin onboarding APIs
  • Browser access to the matching VeriAgent portal

Install

Production:

npx -y veriagent-openclaw install

Direct local package path during development:

npx --yes --package file:/absolute/path/to/veriagent-openclaw veriagent-openclaw install

Internal beta registry:

npx -y --registry https://registry-npm.tsign.cn/ veriagent-openclaw install

Entrypoint

node ./scripts/cli.js install

After linking the package bin:

veriagent-openclaw install

Packaging

Plugin CLI 独立打包,不再和 serve 后端一起生成联动发布物。

在插件目录执行:

npm run package:plugin

该命令会在当前目录生成 npm tarball,例如:

veriagent-openclaw-0.1.3.tgz

Publish

Private registry:

cp .npmrc.private.example .npmrc.private.local
npm adduser --userconfig .npmrc.private.local --registry https://registry-npm.tsign.cn/
npm whoami --userconfig .npmrc.private.local --registry https://registry-npm.tsign.cn/
npm version patch
NPM_CONFIG_USERCONFIG=.npmrc.private.local npm run release:plugin:private

Public npmjs:

cp .npmrc.public.example .npmrc.public.local
npm adduser --userconfig .npmrc.public.local --registry https://registry.npmjs.org/
npm whoami --userconfig .npmrc.public.local --registry https://registry.npmjs.org/
npm version patch
NPM_CONFIG_USERCONFIG=.npmrc.public.local npm run release:plugin:public

If you prefer a single active project config, copy one template to .npmrc instead and run the same commands without --userconfig.

Portal routing rules:

  • Local file: install returns browser URLs under http://localhost:5174
  • Beta install returns browser URLs under https://test-app.veriagent.ai
  • Production install returns browser URLs under https://app.veriagent.ai
  • Local file: install calls plugin API under http://localhost:6879
  • Beta install calls plugin API under https://test-veriagent.tsign.cn
  • Production install calls plugin API under https://api.veriagent.ai

Commands

veriagent-openclaw install
veriagent-openclaw status
veriagent-openclaw list-agents
veriagent-openclaw sign <agentId> --text 'hello'
veriagent-openclaw verify <agentId> --text 'hello' --signature '<base64>'
veriagent-openclaw reset

Runtime state

  • Default runtime state is stored under ~/.veriagent-plugin/
  • To keep runtime files inside a local workspace during development:
VERIAGENT_PLUGIN_HOME=/absolute/path/to/.runtime veriagent-openclaw install

Notes

  • The actual onboarding, CSR submission, certificate download, and sign/verify implementation is delegated to:
    • veriagent-nuxt/serve/scripts/agent-plugin-onboarding-simulator.js
  • Plugin API is still provided by veriagent-nuxt/serve; the CLI is independently published, but it does not ship a separate backend service
  • license remains UNLICENSED in the package metadata; change it only after confirming the intended public license