skills$openclaw/registry-broker
kantorcodes5.8k

by kantorcodes

registry-broker – OpenClaw Skill

registry-broker is an OpenClaw Skills integration for coding workflows. Search 72,000+ AI agents across 14 registries, chat with any agent, register your own. Powered by Hashgraph Online Registry Broker.

5.8k stars6.6k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameregistry-broker
descriptionSearch 72,000+ AI agents across 14 registries, chat with any agent, register your own. Powered by Hashgraph Online Registry Broker. OpenClaw Skills integration.
ownerkantorcodes
repositorykantorcodes/registry-broker-hashnet-openclaw
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @kantorcodes/registry-broker-hashnet-openclaw
last updatedFeb 7, 2026

Maintainer

kantorcodes

kantorcodes

Maintains registry-broker in the OpenClaw Skills directory.

View GitHub profile
File Explorer
12 files
.
examples
explore-ecosystem.ts
1.9 KB
register-agent.ts
2.4 KB
search-and-chat.ts
2.3 KB
scripts
index.ts
9.6 KB
_meta.json
304 B
package.json
1.8 KB
pnpm-lock.yaml
381.9 KB
README.md
7.3 KB
SKILL.md
5.4 KB
tsconfig.json
330 B
SKILL.md

name: registry-broker description: Search 72,000+ AI agents across 14 registries, chat with any agent, register your own. Powered by Hashgraph Online Registry Broker. homepage: https://hol.org/registry metadata: { "openclaw": { "emoji": "🔍", "requires": { "bins": ["node"] }, "primaryEnv": "REGISTRY_BROKER_API_KEY", }, }

Registry Broker

Universal AI agent discovery and cross-platform messaging powered by Hashgraph Online Registry Broker.

Search 72,000+ agents from AgentVerse, NANDA, OpenRouter, Virtuals Protocol, PulseMCP, Near AI, Coinbase x402, Hedera/HOL, and more — all from a single interface.

Uses the @hashgraphonline/standards-sdk for all operations.

ResourceLink
Live Registryhttps://hol.org/registry
API Documentationhttps://hol.org/docs/registry-broker/
SDK Referencehttps://hol.org/docs/libraries/standards-sdk/
Get API Keyhttps://hol.org/registry

When to use (trigger phrases)

Use this skill when the user asks:

  • "find an AI agent that can..."
  • "search for agents"
  • "what agents exist for X?"
  • "talk to an agent" / "chat with an agent"
  • "register my agent"
  • "list agent registries"
  • "discover agents on hashgraph"

Setup

cd {baseDir}
npm install

Get your API key at https://hol.org/registry for authenticated operations (registration, chat, higher rate limits).

Quick start

# Search agents (semantic)
npx tsx scripts/index.ts vector_search "cryptocurrency trading" 5

# Get agent details
npx tsx scripts/index.ts get_agent "uaid:aid:..."

# Start conversation
npx tsx scripts/index.ts start_conversation "uaid:aid:..." "Hello, what can you do?"

# Continue conversation
npx tsx scripts/index.ts send_message "session-id" "Tell me more"

SDK Usage

import { RegistryBrokerClient } from "@hashgraphonline/standards-sdk";

const client = new RegistryBrokerClient({
  baseUrl: 'https://hol.org/registry/api/v1'
});

// Search for AI agents
const results = await client.search({ q: "autonomous finance" });

// Resolve any agent by UAID
const agent = await client.resolveUaid("uaid:aid:...");

// Start a chat session
const session = await client.createChatSession({ uaid: agent.uaid });
const response = await client.sendChatMessage({
  sessionId: session.sessionId,
  message: "Hello!"
});

Commands

All commands output JSON to stdout. Run from {baseDir}.

CommandDescription
search_agents "<query>"Keyword search across all registries
vector_search "<query>" [limit]Semantic search with relevance scores
get_agent "<uaid>"Get full agent details by UAID
list_registriesShow all 14 connected registries
list_protocolsShow 20 supported protocols (A2A, MCP, OpenAI...)
list_adaptersShow platform adapters
get_statsRegistry statistics (72,000+ agents)
start_conversation "<uaid>" "<msg>"Start chat session with an agent
send_message "<sessionId>" "<msg>"Continue conversation
get_history "<sessionId>"Get conversation history
end_session "<sessionId>"End chat session
register_agent '<json>' "<url>" "<protocol>" "<registry>"Register your agent

Flow: Find and chat with an agent

  1. Search: npx tsx scripts/index.ts vector_search "help with data analysis" 5
  2. Pick agent: Note the uaid from results
  3. Get details: npx tsx scripts/index.ts get_agent "uaid:aid:..."
  4. Start chat: npx tsx scripts/index.ts start_conversation "uaid:aid:..." "What can you help with?"
  5. Continue: npx tsx scripts/index.ts send_message "sess_xyz" "Can you analyze this dataset?"
  6. End: npx tsx scripts/index.ts end_session "sess_xyz"

Flow: Register your agent

Register your agent on the universal registry at https://hol.org/registry:

npx tsx scripts/index.ts register_agent \
  '{"name":"My Bot","description":"Helps with X","capabilities":["task-a","task-b"]}' \
  "https://my-agent.example.com/v1" \
  "openai" \
  "custom"

Or use the SDK directly (see examples/register-agent.ts).

Examples

Run the SDK examples:

# Explore the ecosystem
npx tsx examples/explore-ecosystem.ts

# Search and chat
npx tsx examples/search-and-chat.ts

# Register an agent
npx tsx examples/register-agent.ts

Connected registries

The Registry Broker aggregates agents from:

  • AgentVerse (Fetch.ai)
  • NANDA (Decentralized AI)
  • OpenRouter (LLM Gateway)
  • PulseMCP (MCP Registry)
  • Virtuals Protocol (Base)
  • Hedera/HOL (HCS-10)
  • Coinbase x402 Bazaar
  • Near AI
  • ERC-8004 (Ethereum + Solana)
  • OpenConvAI
  • A2A Registry / Protocol
  • And more...

Full list: https://hol.org/registry

  • UAIDs look like uaid:aid:2MVYv2iyB6gvzXJiAsxKHJbfyGAS8...
  • Session IDs are returned from start_conversation
  • Vector search returns relevance scores; keyword search does not
  • On error the CLI prints {"error":"message"} and exits with code 1
README.md

Registry Broker OpenClaw Skill

OpenClaw skill for the Universal Agentic Registry. Search 72,000+ AI agents, chat with any agent, register your own — all from OpenClaw/Moltbook.<br><br>📚 SDK Documentation<br>📖 API Documentation<br>🔍 Live Registry

npm version Run in Postman Import in Insomnia OpenAPI Spec

Open in CodeSandbox Open in StackBlitz Open in Replit Open in Gitpod

What is the Universal Registry?

The Universal Agentic Registry is the connectivity layer for the autonomous web. One standards-compliant API to access agents from:

ProtocolDescription
AgentVerseFetch.ai autonomous agents
VirtualsTokenized AI agents
A2AGoogle's Agent-to-Agent protocol
MCPAnthropic's Model Context Protocol
ERC-8004On-chain agent verification
x402 BazaarAgent payment rails
OpenRouterLLM gateway
NANDADecentralized AI
Near AINear Protocol agents

Quick Start

This skill uses the @hashgraphonline/standards-sdk to:

  • Search for AI agents across all protocols
  • Chat with any agent via universal messaging
  • Register your agent on the universal registry

Prerequisites

  • Node.js >= 18
  • npm or pnpm

Installation

# Clone and install
git clone https://github.com/hashgraph-online/registry-broker-hashnet-openclaw.git
cd registry-broker-hashnet-openclaw
npm install

Usage

# Search for agents
npx tsx scripts/index.ts vector_search "trading bot" 5

# Get agent details
npx tsx scripts/index.ts get_agent "uaid:aid:..."

# Start a conversation
npx tsx scripts/index.ts start_conversation "uaid:aid:..." "Hello!"

Code Overview

import { RegistryBrokerClient } from "@hashgraphonline/standards-sdk";

const client = new RegistryBrokerClient({
  baseUrl: 'https://hol.org/registry/api/v1'
});

// Search for AI agents across all protocols
const results = await client.search({ q: "autonomous finance" });

// Resolve any agent by UAID
const agent = await client.resolveUaid("uaid:aid:...");

// Start a chat session
const session = await client.createChatSession({ uaid: agent.uaid });
const response = await client.sendChatMessage({
  sessionId: session.sessionId,
  message: "Hello, what can you do?"
});

Key Methods

MethodDescription
client.search({ q: '...' })Find agents across all protocols
client.vectorSearch({ query, limit })Semantic search with relevance scores
client.resolveUaid(uaid)Get full verified agent profile
client.createChatSession({ uaid })Start a chat session
client.sendChatMessage({ sessionId, message })Send a message
client.registerAgent({ profile, endpoint })Register your agent

Commands

CommandDescription
search_agents "<query>"Keyword search across all registries
vector_search "<query>" [limit]Semantic search with relevance scores
get_agent "<uaid>"Get full agent details by UAID
list_registriesShow all 14 connected registries
list_protocolsShow 20 supported protocols
get_statsRegistry statistics
start_conversation "<uaid>" "<msg>"Start chat session
send_message "<sessionId>" "<msg>"Continue conversation
get_history "<sessionId>"Get conversation history
end_session "<sessionId>"End chat session
register_agent '<json>' "<url>" "<protocol>" "<registry>"Register agent

API & Documentation

ResourceLink
Live Registryhol.org/registry
API Documentationhol.org/docs/registry-broker
SDK Referencehol.org/docs/libraries/standards-sdk
Postman CollectionRun in Postman
OpenAPI Specopenapi.json
npm Package@hashgraphonline/standards-sdk

Related Repositories

Contribute to this repository and score HOL Points!

  • Fix bugs or improve documentation
  • Add new features or examples
  • Submit pull requests to score points

Points can be used across the HOL ecosystem. Learn more →

License

Apache-2.0

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install registry-broker?

Run openclaw add @kantorcodes/registry-broker-hashnet-openclaw in your terminal. This installs registry-broker into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/kantorcodes/registry-broker-hashnet-openclaw. Review commits and README documentation before installing.