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

@uniohq/cli

v0.2.0

Published

CLI for the Unio agent tool registry. Search, inspect, and demo agent-software integrations from the terminal.

Readme

@uniohq/cli

Terminal-native CLI for the Unio agent tool registry. Search for agent-native services, inspect their manifests, and run the full discover → onboard → call loop against the live sandbox provider without leaving your shell.

npm install -g @uniohq/cli

Three commands

unio search <intent>

Semantic search against the live Unio registry.

$ unio search "send transactional email"
✔ 5 matches
┌──────────────────────┬────────────────┬──────────────┬──────────────────────┐
│ Service              │ Category       │ Free tier    │ Health               │
├──────────────────────┼────────────────┼──────────────┼──────────────────────┤
│ resend               │ email          │ 3000/mo      │ ✓ 1/1 healthy        │
│ loops                │ email          │ ✓            │ ✓ 2/2 healthy        │
│ msg91                │ communications │ ✓            │ seeded               │
└──────────────────────┴────────────────┴──────────────┴──────────────────────┘
Run: unio inspect <service_id> for details

Options: --limit <n> (1–20, default 5).

unio inspect <service_id>

Pretty-prints a service's full manifest: capabilities (with example requests), pricing, onboarding endpoint, and an inline Python snippet you can copy/paste.

$ unio inspect resend
✔ Resend

Resend  (resend)
Send transactional and marketing email via a developer-first API.
Category: email    Homepage: https://resend.com
API base: https://api.resend.com
Onboarding: ✓ https://api.resend.com/unio/signup

Capabilities
  send_email                   POST   /emails
    Send a transactional email to one or more recipients...
    example: {"from":"[email protected]","to":["user@..."]}

Pricing
  model: usage_based (USD)
  free tier: 3000 calls/mo · no card required
  overage: $0.0004/call

unio demo

Runs the live discover → onboard → call loop against the unio-sandbox reference provider using @uniohq/agent. No setup, no credentials.

$ unio demo

═══ UNIO DEMO ═══
Discover → onboard → call, against https://...

✔ Agent identity: ag_01KRBTYKRC4TQVG8J9EQFSDGZ4
✔ Top match: unio-sandbox (testing)
✔ Onboarded — credential cached in OS keychain
✔ Provider replied
  echoed:     "hello from @uniohq/cli"
  agent_id:   ag_01KRBTYKRC4TQVG8J9EQFSDGZ4
  call_count: 1

Agent signed up and called a live service. Zero humans. Zero clicks.

Environment

| Variable | Default | Purpose | | --- | --- | --- | | UNIO_API_BASE | live prod URL | Override for staging or self-hosted. |

License

Apache-2.0