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

boltclaw

v0.2.0

Published

Security control panel for OpenClaw, NanoClaw and NemoClaw AI agents — config hardening, skill scanning, and risk assessment via MCP

Readme

BoltClaw

Security control panel for OpenClaw, NanoClaw, and NemoClaw AI agents - delivered as an MCP server.

BoltClaw hardens your agent config, scans skills for threats before installation, and gives you visibility into what your AI agent can access. No cloud dependencies.

Setup

Requires Node.js 22+.

Claude Code

claude mcp add-json boltclaw '{"type":"stdio","command":"npx","args":["-y","boltclaw"]}'

Claude Desktop

Add to your config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "boltclaw": {
      "command": "npx",
      "args": ["-y", "boltclaw"]
    }
  }
}

Cursor

Add to ~/.cursor/mcp.json:

{
  "servers": {
    "boltclaw": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "boltclaw"]
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "boltclaw": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "boltclaw"]
    }
  }
}

VS Code (Copilot)

Add to your VS Code MCP settings:

{
  "servers": {
    "boltclaw": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "boltclaw"]
    }
  }
}

Codex CLI / IDE

Add to ~/.codex/config.toml:

[mcp_servers.boltclaw]
command = "npx"
args = ["-y", "boltclaw"]

Gemini CLI

Add to ~/.gemini/settings.json:

{
  "mcpServers": {
    "boltclaw": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "boltclaw"]
    }
  }
}

Run directly

npx boltclaw

Tools

BoltClaw exposes 7 MCP tools:

scan_skill

Scan a skill for security threats before installation. Checks for 15 threat patterns across 6 categories: exfiltration, injection, obfuscation, permissions, filesystem, and execution. Each finding includes a plain-English explanation of why it matters.

scan_installed_skills

Audit all skills currently installed in OpenClaw, both bundled and user-installed. Auto-detects skill directories. Use this to check what's already running, not just new skills.

get_security_config

Read your current OpenClaw + BoltClaw configuration. Returns the security score (A-F grade), permission levels, sandbox mode, gateway binding, and any findings.

set_security_config

Update specific security settings. Supports shell, filesystem, browser, and network permission levels, agent sandbox mode, and gateway bind address. Automatically backs up your config before writing.

apply_security_profile

Apply a pre-built security profile in one step:

  • Lockdown - maximum security, all permissions denied
  • Balanced - sensible defaults for most users
  • Developer - permissive settings for dev work
  • Migrate - minimal config for NanoClaw migration

list_backups

List all available config backups. BoltClaw creates automatic backups before every config change.

restore_backup

Restore your config from any backup. The current config is backed up first, so restores are always reversible.

How It Works

BoltClaw manages two files:

  • openclaw.json - your real OpenClaw config (validated against the official schema)
  • boltclaw.json - a sidecar file for BoltClaw-specific settings like permission levels and messaging allowlists

Every config change creates an automatic backup. All changes are reversible.

Supported Platforms

  • OpenClaw - config hardening, skill scanning, permission management
  • NanoClaw - skill scanning (same SKILL.md format), config management
  • NemoClaw - complements NemoClaw's runtime sandboxing with config hardening and skill scanning

Links

Licence

MIT