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

@moltbankhq/openclaw

v0.1.18

Published

MoltBank stablecoin treasury CLI and OpenClaw plugin

Readme

@moltbankhq/openclaw

Standalone CLI and optional OpenClaw plugin for MoltBank — stablecoin treasury controls, approvals, and audit trails for agent fleets.

Install

npm install -g @moltbankhq/openclaw

Plain npm install @moltbankhq/openclaw installs the package locally in the current directory, but it does not put moltbank on your interactive shell PATH.

You can also run it without a global install:

npx @moltbankhq/openclaw setup

Or from a local install:

npm exec --package @moltbankhq/openclaw -- moltbank setup

OpenClaw plugin mode still exists in this pass for compatibility:

openclaw plugins install @moltbankhq/openclaw

What it does

This package connects your OpenClaw agent to MoltBank's stablecoin treasury infrastructure. During setup, it:

  • Downloads and configures the MoltBank skill (SKILL.md + scripts)
  • Installs and registers mcporter for MCP server connectivity
  • Handles OAuth device-code authentication to link your agent to your MoltBank account
  • Configures sandbox (Docker) or host mode automatically based on your OpenClaw setup
  • Injects the sandbox auth path (MOLTBANK_CREDENTIALS_PATH) plus ACTIVE_ORG_OVERRIDE, while keeping tokens and signer keys in a skill-local credentials file

Once set up, your agent can manage treasury operations, set per-agent spending limits, handle x402 payments, and interact with MoltBank's MCP server — all within OpenClaw.

The standalone moltbank CLI is for install, setup, auth status, and repair flows. Actual treasury operations should run through the installed skill wrapper scripts inside the skill directory.

Setup

After installing, run:

moltbank setup

The CLI will guide you through linking your MoltBank account via browser-based OAuth. Once approved, setup verifies a real authenticated balance read before reporting success.

CLI Commands

| Command | Description | |---------|-------------| | moltbank setup | Run full setup and verify readiness | | moltbank setup --verbose | Run setup with detailed logs | | moltbank setup-blocking | Alias for setup | | moltbank status | Check current auth state | | moltbank auth-status | Alias for moltbank status | | moltbank sandbox-setup | Reconfigure sandbox Docker settings | | moltbank inject-key | Re-inject env vars from credentials | | moltbank register | Re-register mcporter MCP server |

Configuration

CLI flags:

moltbank setup --app-base-url https://app.moltbank.bot --skill-name MoltBank

Plugin mode can still read optional config from your openclaw.json:

Optional config in your openclaw.json:

{
  "plugins": {
    "entries": {
      "moltbank": {
        "config": {
          "appBaseUrl": "https://app.moltbank.bot",
          "skillName": "MoltBank"
        }
      }
    }
  }
}

Environment Variables

| Variable | Description | |----------|-------------| | APP_BASE_URL | MoltBank deployment URL (default: https://app.moltbank.bot) | | MOLTBANK_SKILL_NAME | Override skill folder name (default: MoltBank) | | MOLTBANK_CREDENTIALS_PATH | Custom credentials file path | | MOLTBANK_SETUP_AUTH_WAIT_MODE | blocking or nonblocking (default: nonblocking) |

Capabilities

The MoltBank skill gives your agent access to:

  • Treasury management — balances, transfers, account operations
  • Per-agent spending limits — transaction, daily, and weekly caps
  • Approval workflows — human-in-the-loop for spend above thresholds
  • x402 payments — agent-to-agent payments via the x402 protocol
  • Audit trails — full visibility into which agent spent what, when, and why

Requirements

  • OpenClaw v2026.3+
  • Node.js 22+
  • Docker (if using sandbox mode)

Links

License

ISC