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/venice-mod

v0.1.0

Published

Venice wallet-auth Capability for LLM, media, embeddings, tools, and crypto RPC.

Readme

Venice Mod

Venice wallet-auth Capability. Provides the original Intel-compatible LLM surfaces plus the broader Venice x402/no-API-key endpoint set:

  • cap.llm.chat, cap.llm.search, cap.social.search.x
  • cap.llm.responses, cap.llm.embed
  • cap.image.generate, cap.image.edit, cap.image.upscale
  • cap.audio.speech, cap.audio.transcribe, cap.audio.generate
  • cap.video.generate, cap.video.transcribe
  • cap.web.search, cap.web.scrape, cap.document.parse, cap.crypto.rpc

These endpoints are SIWE-gated with Venice's X-Sign-In-With-X header and x402-priced where Venice charges. The mod uses the host's cap.x402.pay + cap.identity.siwe capabilities — it never holds a signing key directly.

Install

moltbank mod install venice

Lifecycle

moltbank mod setup venice
moltbank mod doctor venice --json
moltbank mod estimate venice --json
moltbank mod status venice --json

Used as a capability provider

Other mods call Venice transparently via the SDK:

import { useLLM, useSocial } from '@moltbankhq/mod-sdk';

const llm = useLLM();
const r = await llm.chat({ messages: [...], model: 'grok-x-native' });

const social = useSocial();
const x = await social.searchX({ query: 'x402 protocol launches', limit: 5 });

The host CLI resolves each capability to whichever mod is installed and pinned. Pin Venice as the preferred provider with:

moltbank mod prefer cap.llm.chat=venice --json
moltbank mod prefer cap.social.search.x=venice --json

Broader Venice surfaces can be called through the capability layer or directly for debugging:

moltbank cap call cap.llm.responses responses --mod-arg body='{"model":"grok-x-native","input":"hello"}' --json
moltbank cap call cap.image.generate image-generate --mod-arg body='{"model":"hidream","prompt":"diagram of x402"}' --json
moltbank cap call cap.web.search web-search --mod-arg body='{"query":"x402 wallet auth"}' --json
moltbank cap call cap.crypto.rpc crypto-rpc --mod-arg network=base --mod-arg method=eth_blockNumber --json

Binary outputs, such as generated speech or background-removed images, are written under the mod run's artifact directory and returned as { artifactPath, contentType, sizeBytes }.

crypto-rpc is read-only by default. Chain-write methods such as eth_sendRawTransaction require allowCryptoWrites: true in config and confirmCryptoWrite=true on the call.

The raw request command is intentionally allowlisted to documented Venice wallet-auth routes; it rejects arbitrary Venice API paths and API-key/admin/billing surfaces.

Caveats

  • Venice prepaid x402 credits are tracked on Venice's own ledger and are not usable as signer-wallet balance for third-party x402 merchants. See openclaw-npm/src/core/x402.ts:917-945 for the actionable error the host emits when this confusion surfaces.
  • The mod's setup currently picks grok-x-native as the default model unless VENICE_DEFAULT_MODEL is set or the user overrides via mod setup.