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

@moltnet/guard

v1.0.7

Published

MoltGuard plugin for Clawdbot - Security & observability for AI agents

Readme

@moltnet/guard

MoltGuard plugin for Clawdbot — Security & observability for AI agents.

MoltGuard

Features

  • 🔍 Action Logging — Every tool call is logged with risk classification
  • 🧠 Mind Graph — Visualize your agent's thought process in real-time
  • Intent Gating — Require approval for high-risk actions
  • 🎮 Remote Control — Pause, resume, or stop your agent remotely
  • 📊 Audit Dashboard — Complete history with search, filters, and export

Installation

clawdbot plugins install @moltnet/guard

Configuration

  1. Get your token at guard.moltnet.ai

  2. Add to your Clawdbot config (~/.clawdbot/config.json):

{
  "plugins": {
    "entries": {
      "guard": {
        "enabled": true,
        "config": {
          "token": "mg_your_token_here",
          "agentName": "my-assistant"
        }
      }
    }
  }
}
  1. Restart Clawdbot
clawdbot gateway restart

Configuration Options

| Option | Type | Default | Description | |--------|------|---------|-------------| | token | string | required | Your MoltGuard API token | | url | string | https://guard.moltnet.ai | MoltGuard server URL | | agentName | string | clawdbot-<hostname> | Display name in dashboard | | logThoughts | boolean | true | Send reasoning traces to Mind Graph | | gateHighRisk | boolean | true | Require approval for high-risk actions | | gateTools | string[] | ["exec", "message", "write"] | Tools that require approval | | pollCommands | boolean | true | Enable remote control (pause/resume/stop) | | pollIntervalMs | number | 5000 | Command poll interval in ms |

Risk Classification

The plugin automatically classifies tool calls by risk:

| Risk | Tools | |------|-------| | 🔴 Critical | gateway, exec (with rm, sudo) | | 🟠 High | exec, message, nodes | | 🟡 Medium | write, edit, browser, cron, process | | 🟢 Low | read, web_search, web_fetch, memory_* |

How It Works

┌─────────────────┐     ┌─────────────────┐     ┌─────────────────┐
│    Clawdbot     │────▶│   MoltGuard     │◀────│     Human       │
│    (Agent)      │     │   Plugin        │     │   (Dashboard)   │
└─────────────────┘     └────────┬────────┘     └─────────────────┘
                                 │
                                 ▼
                        ┌─────────────────┐
                        │  guard.moltnet  │
                        │     .ai         │
                        └─────────────────┘
  1. Plugin intercepts all tool calls via tool_result_persist hook
  2. Actions are logged to MoltGuard with risk classification
  3. High-risk actions wait for approval (if gateHighRisk enabled)
  4. Human approves/rejects from dashboard or Telegram
  5. Plugin polls for remote control commands

Self-Hosting

If you're running your own MoltGuard instance:

{
  "plugins": {
    "entries": {
      "guard": {
        "enabled": true,
        "config": {
          "url": "https://your-moltguard.com",
          "token": "your_token"
        }
      }
    }
  }
}

Links

License

MIT