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

@zeromodern/eliza-plugin-0mod

v1.3.0

Published

ElizaOS plugin that exposes 0mod API Gateway tools as Eliza actions

Downloads

843

Readme

@zeromodern/eliza-plugin-0mod

npm TypeScript License: MIT

ElizaOS plugin that exposes 0mod API Gateway edge tools as Eliza bot actions. HTTP 402 micropayments on Base EVM are handled automatically.

Wallet & Network Prerequisites

0mod gateway utilities use x402 HTTP 402 micropayments on Base EVM:

  • Network: Base Mainnet (eip155:8453)
  • Asset: USDC on Base
  • Environment Variable: PAYER_PRIVATE_KEY=0x... (or EVM_PRIVATE_KEY / X402_PRIVATE_KEY)

When PAYER_PRIVATE_KEY is present in your bot's environment, actions transparently sign payment authorizations and execute with zero manual intervention.

Requirements

  • Node.js >= 18
  • npm >= 9

Install

npm install @zeromodern/eliza-plugin-0mod

Setup & Usage

1. Register Plugin in Eliza Character Config

Add the plugin to your ElizaOS character JSON file:

{
  "name": "MyAgent",
  "plugins": ["@zeromodern/eliza-plugin-0mod"]
}

2. Environment Configuration

Set your wallet private key in your .env file:

PAYER_PRIVATE_KEY=0x_your_private_key_here

3. Programmatic Usage Example

import { zeroModPlugin, domainCheckAction } from "@zeromodern/eliza-plugin-0mod";

// The plugin automatically handles x402 payment signing when PAYER_PRIVATE_KEY is set in process.env
const result = await domainCheckAction.handler(
  runtime,
  { content: { text: "check domain example.com" } },
  state,
  options,
  (response) => {
    console.log("Domain Check Output:", response.text);
  }
);

Available Actions

💡 Pricing: For live per-call pricing and endpoint status across all actions, visit api.0mod.com or fetch https://api.0mod.com/api/v1/discovery.

| Action Name | Description | Input Payload Example | | :--- | :--- | :--- | | STEALTH_DOM_FETCH | Headless web page fetch from Cloudflare edge | { "text": "https://example.com" } | | AIRGAP_PII_SCRUB | Redact SSN, phone, email, ZIP via Workers AI | { "text": "Call me at 555-0199" } | | RAG_SHRINK_HTML | Strip HTML boilerplate to clean Markdown for RAG | { "text": "<html>...</html>" } | | CODE_DENOISE | Remove comments, docstrings, sourcemaps from code | { "text": "const x = 1;" } | | DOMAIN_CHECK | Query RDAP registry for domain availability | { "text": "example.com" } | | DEX_PRICE_SUMMARY | Real-time DEX token price, volume, liquidity | { "text": "USDC" } | | X_SENTIMENT | Social & market sentiment scoring | { "text": "crypto market" } | | IMAGE_OCR_SHRINK | Vision OCR text and table extraction | { "text": "https://..." } | | EMBED_TEXT | 768-dim text embedding generation | { "text": "sample text" } | | EMBED_MULTILINGUAL | 1024-dim multilingual text embedding generation | { "text": "sample text" } | | SUMMARIZE_TEXT | Executive TL;DR document summarization | { "text": "long text string" } |

Ecosystem Packages

Troubleshooting

  • Actions not loading: Verify the plugin string matches exactly: "@zeromodern/eliza-plugin-0mod" in your character config.
  • Payment / Auth errors: Ensure PAYER_PRIVATE_KEY is set with a valid Base EVM private key holding a USDC balance for x402 micropayments.

License

MIT