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

@atbash/atbash-plugin

v0.2.0

Published

OpenClaw ATBASH tool-audit plugin for auditing and enforcing policies on tool calls.

Readme

ATBASH Plugin

OpenClaw plugin that checks tool calls against an ATBASH policy API and can block execution when the verdict is BLOCKED.

Install

From a local directory:

openclaw plugins install /path/to/atbash-plugin

From npm:

openclaw plugins install @atbash/atbash-plugin

Note: OpenClaw may flag this plugin as unsafe during installation because it reads a private key file to identify the agent on the ATBASH platform. This is expected behaviour. Use the --dangerously-force-unsafe-install flag to proceed:

openclaw plugins install @atbash/atbash-plugin --dangerously-force-unsafe-install

The private key is used solely to sign requests to the ATBASH judge API and is never transmitted beyond that.

Setup

The plugin requires an agent key file to authenticate requests to the ATBASH API. By default it reads from:

~/.config/atbash/guard-client-key

The file can be JSON:

{
  "privKey": "your-hex-private-key",
  "pubKey": "your-hex-public-key"
}

Or key=value format:

privkey=your-hex-private-key
pubkey=your-hex-public-key

Optional helper script for skill-based checks

If you want a reusable skill to perform a one-shot guard check without exposing shell-level key extraction, install a helper script at:

~/.config/atbash/judge_via_api.js

The helper should:

  • read ~/.config/atbash/guard-client-key internally
  • call the judge API directly
  • print only the safe JSON result

A reference implementation is included in this repo at:

tools/judge_via_api.js

This repo path is a reference implementation, not the path that a reusable skill should hardcode.

Config

Configure it under plugins.entries["atbash-plugin"]:

{
  "plugins": {
    "entries": {
      "atbash-plugin": {
        "enabled": true,
        "config": {
          "enabled": true,
          "enforceDecision": true,
          "chromiaSecretPath": "~/.config/atbash/guard-client-key"
        }
      }
    }
  }
}

Config fields

| Option | Description | |---|---| | enabled | Enable plugin logic | | enforceDecision | If true, BLOCKED verdicts block tool execution. Default: false | | chromiaSecretPath | Path to agent key file. Default: ~/.config/atbash/guard-client-key | | debug | Extra logging |

How it works

Before each tool call, the plugin:

  1. Loads the agent key pair from the key file
  2. POSTs to the ATBASH judge API with the tool name and arguments
  3. Waits for the API to return a verdict (the API handles all on-chain interaction)
  4. Interprets the verdict:
    • blocked → block tool execution (if enforceDecision: true)
    • hold → allow
    • allowed → allow

If the API is unreachable or returns an error, the plugin fails closed (blocks execution).

Fail-closed behaviour

The plugin blocks tool execution in the following cases:

  • Key file missing or unreadable
  • Judge API unreachable or returns a non-2xx status
  • Verdict is block

To make failures block instead, set enforceDecision: true and handle key/network issues before deployment.

License

Proprietary — all rights reserved. See LICENSE. Commercial licensing inquiries: contact the Atbash team.