首页龙虾技能列表 › Registry Broker — 技能工具

🔍 Registry Broker — 技能工具

v0.1.0

[自动翻译] Search 72,000+ AI agents across 14 registries, chat with any agent, register your own. Powered by Hashgraph Online Registry Broker.

0· 2,000·1 当前·1 累计
by @kantorcodes·MIT-0
下载技能包
License
MIT-0
最后更新
2026/4/11
安全扫描
VirusTotal
可疑
查看报告
OpenClaw
安全
high confidence
The skill's code, instructions, and requested credential line up with its stated purpose (searching, chatting with, and registering AI agents via HOL); nothing disproportionate or covert was found.
评估建议
This skill appears coherent with its purpose: it requires Node and an API key for hol.org, and its scripts call the @hashgraphonline SDK and the registry API. Before installing or running: (1) Confirm you trust https://hol.org and the @hashgraphonline packages or inspect the SDK source; (2) Review package.json and the lockfile (or install inside a disposable/sandboxed environment) because npm install will fetch many dependencies; (3) Only provide REGISTRY_BROKER_API_KEY if you accept the registr...
详细分析 ▾
用途与能力
Name/description, SKILL.md, examples, and the CLI implementation all implement an agent registry client. Required binary (node) and the single primary credential (REGISTRY_BROKER_API_KEY) are appropriate for interacting with an external registry API and SDK.
指令范围
Runtime instructions and the included scripts only reference the registry API, the SDK, and optional .env values (REGISTRY_BROKER_API_KEY, REGISTRY_BROKER_BASE_URL). They do not instruct reading unrelated system files, exfiltrating arbitrary data, or contacting unexpected endpoints beyond hol.org and user-provided agent endpoints.
安装机制
There is no platform install spec, but SKILL.md directs users to run npm install. That will pull dependencies (including @hashgraphonline/standards-sdk) from npm according to package.json/pnpm-lock.yaml. This is expected for a Node-based skill but does mean you will install third-party packages — review package.json/pnpm-lock or install in an isolated environment if you have concerns.
凭证需求
The skill only declares one primary env var (REGISTRY_BROKER_API_KEY) and optionally supports REGISTRY_BROKER_BASE_URL via .env. The code uses those env vars only for API access; no unrelated secrets or system credentials are requested.
持久化与权限
The skill does not request always:true and does not modify other skills or system-wide settings. It runs as a CLI and can be invoked by the agent; autonomous invocation is allowed by platform default but here is not combined with other red flags.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv0.1.02026/2/2

Initial release of Registry Broker skill. - Discover and search 72,000+ AI agents across 14+ registries from a single interface. - Start chats, continue conversations, and view history with any connected agent. - Register your own agents to the universal registry. - Includes CLI commands for all operations and usage examples. - Powered by the @hashgraphonline/standards-sdk. - Comprehensive documentation and API references provided.

● 可疑

安装命令 点击复制

官方npx clawhub@latest install registry-broker-hashnet-openclaw
镜像加速npx clawhub@latest install registry-broker-hashnet-openclaw --registry https://cn.clawhub-mirror.com

技能文档

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 ""Keyword search across all registries
vector_search "" [limit]Semantic search with relevance scores
get_agent ""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 "" ""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

Flow: Find and chat with an agent

  • Search: npx tsx scripts/index.ts vector_search "help with data analysis" 5
  • Pick agent: Note the uaid from results
  • Get details: npx tsx scripts/index.ts get_agent "uaid:aid:..."
  • Start chat: npx tsx scripts/index.ts start_conversation "uaid:aid:..." "What can you help with?"
  • Continue: npx tsx scripts/index.ts send_message "sess_xyz" "Can you analyze this dataset?"
  • 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

Notes

  • 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

Links

  • Registry Broker: https://hol.org/registry
  • API Documentation: https://hol.org/docs/registry-broker/
  • SDK Reference: https://hol.org/docs/libraries/standards-sdk/
  • npm Package: https://npmjs.com/package/@hashgraphonline/standards-sdk
  • MCP Server: https://github.com/hashgraph-online/hashnet-mcp-js
  • Support: hello@hashgraphonline.com
数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务