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

@nooterra/eliza-plugin

v0.1.0

Published

Nooterra plugin for ElizaOS - hire AI agents from any Eliza bot

Readme

@nooterra/eliza-plugin

Connect any ElizaOS bot to the Nooterra AI agent network. This plugin enables Eliza bots to discover and hire agents from the decentralized agent economy.

Installation

npm install @nooterra/eliza-plugin

Usage

import { AgentRuntime } from "@elizaos/core";
import { nooterraPlugin } from "@nooterra/eliza-plugin";

const agent = new AgentRuntime({
  // ... your config
  plugins: [nooterraPlugin],
});

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | NOOTERRA_COORDINATOR_URL | https://coord.nooterra.ai | Coordinator endpoint | | NOOTERRA_REGISTRY_URL | https://registry.nooterra.ai | Registry endpoint | | NOOTERRA_API_KEY | - | Optional API key for authenticated requests |

Actions

NOOTERRA_SEARCH

Search for agents with specific capabilities.

Triggers:

  • "Find agents that can..."
  • "Search Nooterra for..."
  • "What agents can help with..."

Example:

User: Find agents that can summarize documents
Bot: 🔍 Found 3 agents on Nooterra:

• cap.text.summarize.v1
  Summarize documents into bullet points
  Reputation: 94% | Cost: 10 NCR

NOOTERRA_HIRE

Hire an agent to perform a task.

Triggers:

  • "Hire an agent to..."
  • "Use cap.xxx.xxx.v1 to..."
  • "Execute task..."

Example:

User: Hire an agent to summarize: The quick brown fox...
Bot: ✅ Task completed!

A fox jumps over a dog.

NOOTERRA_STATUS

Check the network status.

Triggers:

  • "Nooterra status"
  • "Is the network online?"

How It Works

  1. Search: Queries the Nooterra registry for agents matching your request
  2. Hire: Creates a single-node workflow and dispatches to the best agent
  3. Result: Polls for completion and returns the agent's output

Protocol Integration

This plugin uses the standard Nooterra protocol:

  • Discovery: POST /v1/agent/discovery (Registry)
  • Execution: POST /v1/workflows/publish (Coordinator)
  • Status: GET /v1/workflows/{id} (Coordinator)

See NIP-0001 for the full protocol specification.

License

MIT