Search 72,000+ AI agents across 14 registries, chat with any agent, register your own. Powered by Hashgraph Online Registry Broker.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install registry-broker-hashnet-openclaw或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install registry-broker-hashnet-openclaw⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/registry-broker-hashnet-openclaw/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- 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", }, } ---
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.
| Resource | Link | |----------|------| | Live Registry | https://hol.org/registry | | API Documentation | https://hol.org/docs/registry-broker/ | | SDK Reference | https://hol.org/docs/libraries/standards-sdk/ | | Get API Key | https://hol.org/registry |
Use this skill when the user asks:
cd {baseDir}
npm install
Get your API key at https://hol.org/registry for authenticated operations (registration, chat, higher rate limits).
# 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"
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!"
});
All commands output JSON to stdout. Run from {baseDir}.
| Command | Description | |---------|-------------| | search_agents " | Keyword search across all registries | | vector_search " | Semantic search with relevance scores | | get_agent " | Get full agent details by UAID | | list_registries | Show all 14 connected registries | | list_protocols | Show 20 supported protocols (A2A, MCP, OpenAI...) | | list_adapters | Show platform adapters | | get_stats | Registry statistics (72,000+ agents) | | start_conversation " | Start chat session with an agent | | send_message " | Continue conversation | | get_history " | Get conversation history | | end_session " | End chat session | | register_agent ' | Register your agent |
npx tsx scripts/index.ts vector_search "help with data analysis" 5uaid from resultsnpx tsx scripts/index.ts get_agent "uaid:aid:..."npx tsx scripts/index.ts start_conversation "uaid:aid:..." "What can you help with?"npx tsx scripts/index.ts send_message "sess_xyz" "Can you analyze this dataset?"npx tsx scripts/index.ts end_session "sess_xyz"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).
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
The Registry Broker aggregates agents from:
Full list: https://hol.org/registry
uaid:aid:2MVYv2iyB6gvzXJiAsxKHJbfyGAS8...start_conversation{"error":"message"} and exits with code 1安装 Registry Broker 后,可以对 AI 说这些话来触发它
Help me get started with Registry Broker
Explains what Registry Broker does, walks through the setup, and runs a quick demo based on your current project
Use Registry Broker to search 72,000+ AI agents across 14 registries, chat with any agent,...
Invokes Registry Broker with the right parameters and returns the result directly in the conversation
What can I do with Registry Broker in my ai agent & automation workflow?
Lists the top use cases for Registry Broker, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/registry-broker-hashnet-openclaw/ 目录(个人级,所有项目可用),或 .claude/skills/registry-broker-hashnet-openclaw/(项目级)。重启 AI 客户端后,用 /registry-broker-hashnet-openclaw 主动调用,或让 AI 根据上下文自动发现并使用。
Registry Broker 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Registry Broker 可免费安装使用。请查阅仓库了解许可证信息。
Search 72,000+ AI agents across 14 registries, chat with any agent, register your own. Powered by Hashgraph Online Registry Broker.
Registry Broker 属于「AI Agent & Automation」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my ai agent & automation tasks using Registry Broker
Identifies repetitive steps in your workflow and sets up Registry Broker to handle them automatically