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/agentkit-provider-0mod

v1.3.0

Published

Coinbase AgentKit action provider for the 0mod API Gateway

Readme

@zeromodern/agentkit-provider-0mod

npm TypeScript License: MIT

Coinbase AgentKit action provider for the 0mod API Gateway. 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/agentkit-provider-0mod

Setup & Code Example

import { AgentKit } from "@coinbase/agentkit";
import { zeroModActionProvider, ZeroModActionProvider } from "@zeromodern/agentkit-provider-0mod";

// Set PAYER_PRIVATE_KEY in process.env for automatic 402 payment signing
process.env.PAYER_PRIVATE_KEY = "0x_your_private_key_here";

const agentKit = await AgentKit.from({
  actionProviders: [
    zeroModActionProvider(),
  ],
});

// Call an action directly using the provider
const provider = new ZeroModActionProvider();
const resultJson = await provider.domainCheck(null, { domain: "base.org" });
console.log("Domain Check Output:", JSON.parse(resultJson));

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 Schema Example | | :--- | :--- | :--- | | stealth_dom_fetch | Headless web page fetch from Cloudflare edge | { "url": "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 | { "html": "<html>...</html>" } | | code_denoise | Remove comments, docstrings, sourcemaps from code | { "code": "const x = 1;" } | | domain_check | Query RDAP registry for domain availability | { "domain": "example.com" } | | dex_price_summary | Real-time DEX token price, volume, liquidity | { "query": "USDC" } | | x_sentiment | Social & market sentiment scoring | { "topic": "crypto market" } | | image_ocr_shrink | Vision OCR text and table extraction | { "imageUrl": "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

  • Import error: Make sure you're importing from @zeromodern/agentkit-provider-0mod.
  • 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