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

@nevermined-io/openclaw-plugin

v1.1.2

Published

OpenClaw plugin for Nevermined — exposes subscriber and builder tools as gateway methods

Readme

@nevermined-io/openclaw-plugin

OpenClaw plugin for Nevermined — exposes AI agent payment operations as gateway tools callable from any OpenClaw channel (Telegram, Discord, WhatsApp, etc.).

Installation

openclaw plugin install @nevermined-io/openclaw-plugin

Authentication

The plugin supports two ways to provide your Nevermined API key:

Option A: Slash command (recommended)

Use the /nvm_login command from any chat channel. This opens a browser window where you authenticate with Nevermined, and the API key is captured automatically.

/nvm_login              # Login to sandbox (default)
/nvm_login live         # Login to live environment
/nvm_login <api-key>    # Paste an API key directly
/nvm_logout             # Remove stored API key

On headless servers where a browser can't open, the command provides manual instructions with a login URL.

Option B: Manual configuration

Add your API key directly to openclaw.json:

{
  "plugins": {
    "entries": {
      "openclaw-plugin": {
        "enabled": true,
        "config": {
          "nvmApiKey": "sandbox:eyJhbG...",
          "environment": "sandbox",
          "planId": "<your-plan-id>",
          "agentId": "<your-agent-id>",
          "creditsPerRequest": 1,
          "enablePaidEndpoint": false,
          "agentEndpointPath": "/nevermined/agent"
        }
      }
    }
  }
}

Configuration

| Field | Required | Default | Description | |-------|----------|---------|-------------| | nvmApiKey | No | — | Your Nevermined API key (or use /nvm_login) | | environment | No | sandbox | sandbox or live | | planId | No | — | Default plan ID for subscriber tools | | agentId | No | — | Default agent ID for multi-agent plans | | creditsPerRequest | No | 1 | Credits consumed per request | | enablePaidEndpoint | No | false | Enable the x402 paid HTTP endpoint on the gateway | | agentEndpointPath | No | /nevermined/agent | HTTP path for the paid agent endpoint |

Available Tools

Slash Commands

| Command | Description | |---------|-------------| | /nvm_login [environment] | Authenticate via browser login or paste an API key | | /nvm_logout | Remove stored API key |

Subscriber Tools

| Tool | Description | Key Params | |------|-------------|------------| | nevermined_checkBalance | Check credit balance for a plan | planId | | nevermined_getAccessToken | Get an x402 access token | planId, agentId | | nevermined_orderPlan | Purchase a payment plan | planId | | nevermined_queryAgent | Query an agent end-to-end | agentUrl, prompt, planId, agentId |

Builder Tools

| Tool | Description | Key Params | |------|-------------|------------| | nevermined_registerAgent | Register an agent with a plan | name, agentUrl, planName, priceAmounts, priceReceivers, creditsAmount, tokenAddress | | nevermined_createPlan | Create a payment plan | name, priceAmounts, priceReceivers, creditsAmount, tokenAddress | | nevermined_listPlans | List your plans | — |

Documentation

License

Apache-2.0