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

skillboss-openclaw-plugin

v0.1.0

Published

Give your OpenClaw agent access to 700+ AI tools via one wallet. Web scraping, search, image generation, email, TTS, and 100+ LLMs. One API key, audit trail included.

Downloads

22

Readme

@skillboss/openclaw-plugin

Give your OpenClaw agent access to 700+ AI tools via one wallet. Web scraping, web search, image/video/audio generation, email, TTS, and 100+ LLMs. One API key. Audit trail included.

SkillBoss is the wallet and shopping rail for AI agents. This is the official OpenClaw plugin.

Install

openclaw plugins install @skillboss/openclaw-plugin

OpenClaw accepts npm specs only (git / URL / file are rejected).

Configure

  1. Grab an API key at https://www.skillboss.co/console. First top-up of $25 grants a $5 bonus ($30 usable).
  2. Add to your OpenClaw config:
{
  plugins: {
    entries: {
      skillboss: {
        config: {
          apiKey: "sk_skillboss_...",
          agentName: "openclaw-main",
          maxCostPerCallUsd: 2.0,
          defaultChatModel: "claude-4-6-sonnet",
          defaultImageModel: "vertex/gemini-3-pro-image-preview"
        }
      }
    }
  },
  agents: {
    list: [
      {
        id: "main",
        tools: {
          // Enable all SkillBoss tools for this agent
          allow: ["skillboss"]
        }
      }
    ]
  }
}
  1. Restart the OpenClaw gateway.

Tools

This plugin registers the following tools:

| Tool | Description | | --- | --- | | skillboss_run | Generic dispatcher — call any skill by id | | skillboss_catalog_search | Natural-language search over the 700+ SkillBoss catalog | | skillboss_get_balance | Check the current wallet balance | | skillboss_web_scrape | Scrape a web page (Firecrawl) | | skillboss_web_search | Live web search (Perplexity / Brave / Exa) | | skillboss_send_email | Send an email (AWS SES) | | skillboss_generate_image | Generate an image (Gemini 3 Pro Image by default) | | skillboss_chat | Call any LLM (Claude, GPT, Gemini, DeepSeek, Kimi, ...) |

Need a skill that isn't in this list? Use skillboss_catalog_search to find it, then pass its id to skillboss_run.

How it works

Every tool call hits POST https://api.skillboss.co/v1/run with your API key. SkillBoss:

  1. Validates the request against your wallet balance + max_cost_per_call_usd limit.
  2. Routes to the underlying vendor (Firecrawl, OpenAI, Anthropic, Imagen, etc).
  3. Returns the vendor response plus a signed receipt with cost_usd, wallet_balance_after_usd, and a X-Agent-Name audit tag.

The plugin surfaces the cost and balance in the tool result meta so your agent can track spend.

Agent Shopping Protocol

This plugin implements Agent Shopping Protocol v0.1. That means:

  • Every call goes through /v1/run with X-Payment-Protocol: skillboss_wallet.
  • Every product the plugin can reach is discoverable at https://www.skillboss.co/api/catalog as machine JSON.
  • Every product page has a sibling /product.json for single-product lookups.
  • Retry semantics are declared per product in the catalog (retry_policy field).

Safety + audit

  • X-Agent-Name header tags every call, so your spend shows up in https://www.skillboss.co/admin/analytics (for your account).
  • Server-side max_cost_per_call_usd limit. Calls that would exceed it are rejected with 402.
  • Signed JWT receipts (ASP v0.2) let you reconcile against an auditor without trusting the SkillBoss dashboard.

Development

pnpm install
pnpm run build      # compile to dist/
pnpm run typecheck  # strict typecheck

The plugin lives under packages/openclaw-plugin/ in the SkillBoss monorepo.

License

MIT — see LICENSE.

Links