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

omnicall-agent

v0.1.0

Published

A tiny autonomous research agent that runs entirely on Omnicall — 248 LLMs + live web search through one keyless, pay-per-call endpoint. No OpenAI/Anthropic key, no signup.

Readme

omnicall-agent

An autonomous AI agent in ~150 lines — with no API keys. The brain (248 LLMs) and the tools (live web search) are one keyless, pay-per-call endpoint: Omnicall. Pay per call in USDC via x402 on Base/Solana, or with a gck_ credit key. It runs free out of the box.

npx omnicall-agent "What is the x402 protocol and who is building on it?"

That's it — no OpenAI key, no Anthropic key, no signup. The agent picks a model, searches the web when it needs facts, and answers.

Why this exists

Most "agent starter kits" make you sign up for an LLM provider, paste a key, add a billing card, then wire up a separate search API with its key. omnicall-agent needs none of that. One endpoint gives an agent every model plus tools, and it pays per call — so you can ship an autonomous agent with zero accounts and pay only for what it actually does.

Two modes

| Mode | Setup | What you get | |------|-------|--------------| | Free | nothing | Single-shot answer on the free tier. Instant. | | Agentic | OMNICALL_KEY | Full reason→search→verify loop over 248 premium models + live web search. |

# Free — runs immediately
npx omnicall-agent "Summarize the latest on agent payments"

# Agentic — unlock tools + premium models with a credit key (or x402 wallet)
export OMNICALL_KEY=gck_your_key      # get one at https://omnicall.gocreativeai.com
npx omnicall-agent "Research USDC stablecoin volume trends and cite sources"

Environment

| Var | Default | Purpose | |-----|---------|---------| | OMNICALL_KEY | (none) | gck_ credit key or x402-funded key. Unlocks the agentic loop. | | OMNICALL_MODEL | auto | Model id. auto routes to the cheapest capable model. | | OMNICALL_URL | https://omnicall.gocreativeai.com | Gateway base URL. |

How it works

The agent is a simple loop against Omnicall's OpenAI-compatible gateway:

  1. Send the goal to a model (POST /v1/chat/completions, model: "auto").
  2. If the model asks to look something up (SEARCH: <query>), the agent calls GET /v1/web/<query> and feeds the result back.
  3. Repeat until the model returns a FINAL: answer.

Every call is metered and paid per-use — no subscription, no idle cost.

Build your own on the same rails

  • OpenAI SDK drop-in: base_url="https://omnicall.gocreativeai.com/v1"
  • MCP server: npx -y omnicall-mcp (or claude mcp add --transport http omnicall https://omnicall.gocreativeai.com/mcp)
  • 248 models, image/video/voice/music, and live crypto/markets/web/research — all keyless, all pay-per-call.

MIT licensed.