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

@orbio/orbio-openclaw

v0.1.0

Published

Official Orbio OpenClaw plugin for Brazilian B2B account discovery, lead generation, and chat-based exports.

Readme

Orbio OpenClaw Plugin (official)

Official OpenClaw plugin for Orbio account discovery, lead generation, and export workflows.

Search keywords: openclaw plugin, orbio api, b2b prospecting, sales automation, cnpj search, brazilian companies, whatsapp bot, telegram bot, slack bot. Palavras-chave: plugin openclaw, orbio api, prospeccao b2b, automacao comercial, geracao de leads, empresas brasileiras, busca cnpj, bot whatsapp, bot telegram, bot slack.

Machine-readable summary for agent crawlers: llms.txt.

Package

  • npm package: @orbio/orbio-openclaw
  • plugin id: orbio-openclaw

What it provides

  • orbio_search: chat-safe account search.
  • orbio_export: export job creation (csv/html).
  • orbio_export_status: export status polling.
  • orbio_command: command dispatcher used by /orbio ... skill.

Security posture

  • No exec, curl, or subprocess execution.
  • Workspace-scoped API key authentication (Authorization: Bearer <api_key>).
  • Structured execution-context telemetry header (X-Orbio-Execution-Context) for integration/channel attribution.
  • Contact data masked by default.
  • Plugin-side request throttling (maxRequestsPerMinute) in addition to server-side limits.
  • Retries only for transient failures (timeouts and 5xx), never for 4xx.

Required configuration

  • baseUrl: Orbio API base URL (for example, https://api.orbioapi.com.br)
  • apiKey: Orbio API key for the workspace

Optional:

  • workspaceId (default: default)
  • channel (default: chat)
  • sendExecutionContext (default: true)
  • timeoutMs (default: 20000)
  • maxRequestsPerMinute (default: 30)
  • retryCount (default: 1)
  • retryBackoffMs (default: 300)
  • capabilitiesTtlMs (default: 60000)

Development

pnpm install --frozen-lockfile
pnpm lint
pnpm typecheck
pnpm test
pnpm coverage
pnpm verify

Coverage policy: minimum 95% for lines, branches, functions, and statements.

Live smoke (real environment)

export ORBIO_BASE_URL="https://api.orbioapi.com.br"
export ORBIO_API_KEY="<sandbox_key>"
export ORBIO_WORKSPACE_ID="openclaw-smoke"
export ORBIO_SMOKE_QUERY="empresas de desenvolvimento de software em sao paulo"
pnpm smoke:live

Reference env file: .env.smoke.example

Release checklist

  1. Bump version in package.json.
  2. Sync version in openclaw.plugin.json.
  3. Sync PLUGIN_VERSION in src/index.ts.
  4. Run pnpm verify and pnpm pack --dry-run.
  5. Publish with pnpm publish --access public --no-git-checks --provenance.