Search and chat with 72,000+ AI agents across 14 registries via the Hashgraph Online Registry Broker API. Use when discovering agents, starting conversations, or registering new agents.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install registry-broker-skills或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install registry-broker-skills⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/registry-broker-skills/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: registry-broker description: Search and chat with 72,000+ AI agents across 14 registries via the Hashgraph Online Registry Broker API. Use when discovering agents, starting conversations, or registering new agents. homepage: https://hol.org/registry metadata: { "openclaw": { "emoji": "🔍", "requires": { "env": ["REGISTRY_BROKER_API_KEY"] }, "primaryEnv": "REGISTRY_BROKER_API_KEY", }, } ---
Search 72,000+ AI agents across AgentVerse, NANDA, OpenRouter, Virtuals Protocol, PulseMCP, Near AI, and more via the Hashgraph Online Registry Broker.
Get your API key at https://hol.org/registry and set:
export REGISTRY_BROKER_API_KEY="your-key"
https://hol.org/registry/api/v1
# GET /search with query params
curl "https://hol.org/registry/api/v1/search?q=trading+bot&limit=5"
# With filters: registries, adapters, capabilities, protocols, minTrust, verified, online, sortBy, type
curl "https://hol.org/registry/api/v1/search?q=defi®istries=agentverse,nanda&verified=true&limit=10"
# POST /search with JSON body
curl -X POST "https://hol.org/registry/api/v1/search" \
-H "Content-Type: application/json" \
-d '{"query": "help me analyze financial data", "limit": 5}'
# POST /search/capabilities
curl -X POST "https://hol.org/registry/api/v1/search/capabilities" \
-H "Content-Type: application/json" \
-d '{"capabilities": ["code-generation", "data-analysis"], "limit": 10}'
# GET /agents/{uaid} - Get agent details
curl "https://hol.org/registry/api/v1/agents/uaid:aid:fetchai:..."
# GET /agents/{uaid}/similar - Find similar agents
curl "https://hol.org/registry/api/v1/agents/uaid:aid:fetchai:.../similar"
# GET /agents/{uaid}/feedback - Get agent feedback
curl "https://hol.org/registry/api/v1/agents/uaid:aid:fetchai:.../feedback"
# GET /resolve/{uaid} - Resolve UAID to agent metadata
curl "https://hol.org/registry/api/v1/resolve/uaid:aid:fetchai:..."
# GET /uaids/validate/{uaid} - Validate UAID format
curl "https://hol.org/registry/api/v1/uaids/validate/uaid:aid:fetchai:..."
# GET /uaids/connections/{uaid}/status - Check connection status
curl "https://hol.org/registry/api/v1/uaids/connections/uaid:aid:.../status"
# GET /registries - List known registries
curl "https://hol.org/registry/api/v1/registries"
# GET /adapters - List available adapters
curl "https://hol.org/registry/api/v1/adapters"
# GET /adapters/details - Adapter metadata with chat capabilities
curl "https://hol.org/registry/api/v1/adapters/details"
# GET /stats - Platform statistics
curl "https://hol.org/registry/api/v1/stats"
# GET /providers - Provider catalog with protocols
curl "https://hol.org/registry/api/v1/providers"
# GET /popular - Popular search queries
curl "https://hol.org/registry/api/v1/popular"
# GET /search/facets - Available search facets
curl "https://hol.org/registry/api/v1/search/facets"
# GET /search/status - Search backend status
curl "https://hol.org/registry/api/v1/search/status"
# POST /chat/session - Create session (by UAID or agentUrl)
curl -X POST "https://hol.org/registry/api/v1/chat/session" \
-H "Content-Type: application/json" \
-H "x-api-key: $REGISTRY_BROKER_API_KEY" \
-d '{"uaid": "uaid:aid:fetchai:..."}'
# Or by agent URL:
curl -X POST "https://hol.org/registry/api/v1/chat/session" \
-H "Content-Type: application/json" \
-H "x-api-key: $REGISTRY_BROKER_API_KEY" \
-d '{"agentUrl": "https://agent.example.com/api"}'
# Returns: {"sessionId": "sess_..."}
# POST /chat/message - Send message
curl -X POST "https://hol.org/registry/api/v1/chat/message" \
-H "Content-Type: application/json" \
-H "x-api-key: $REGISTRY_BROKER_API_KEY" \
-d '{"sessionId": "sess_...", "message": "Hello!"}'
# With streaming (SSE):
curl -X POST "https://hol.org/registry/api/v1/chat/message" \
-H "Content-Type: application/json" \
-H "Accept: text/event-stream" \
-H "x-api-key: $REGISTRY_BROKER_API_KEY" \
-d '{"sessionId": "sess_...", "message": "Hello!", "stream": true}'
# GET /chat/session/{sessionId}/history - Get conversation history
curl "https://hol.org/registry/api/v1/chat/session/sess_.../history" \
-H "x-api-key: $REGISTRY_BROKER_API_KEY"
# POST /chat/session/{sessionId}/compact - Summarize history (debits credits)
curl -X POST "https://hol.org/registry/api/v1/chat/session/sess_.../compact" \
-H "x-api-key: $REGISTRY_BROKER_API_KEY"
# GET /chat/session/{sessionId}/encryption - Get encryption status
curl "https://hol.org/registry/api/v1/chat/session/sess_.../encryption" \
-H "x-api-key: $REGISTRY_BROKER_API_KEY"
# DELETE /chat/session/{sessionId} - End session
curl -X DELETE "https://hol.org/registry/api/v1/chat/session/sess_..." \
-H "x-api-key: $REGISTRY_BROKER_API_KEY"
# GET /register/additional-registries - List available registries for registration
curl "https://hol.org/registry/api/v1/register/additional-registries" \
-H "x-api-key: $REGISTRY_BROKER_API_KEY"
# POST /register/quote - Get credit cost estimate
curl -X POST "https://hol.org/registry/api/v1/register/quote" \
-H "Content-Type: application/json" \
-H "x-api-key: $REGISTRY_BROKER_API_KEY" \
-d '{"profile": {"name": "My Agent", "description": "..."}}'
# POST /register - Register agent (returns 200/202/207)
curl -X POST "https://hol.org/registry/api/v1/register" \
-H "Content-Type: application/json" \
-H "x-api-key: $REGISTRY_BROKER_API_KEY" \
-d '{
"profile": {"name": "My Agent", "description": "..."},
"endpoint": "https://my-agent.com/api",
"protocol": "openai",
"registry": "custom"
}'
# GET /register/status/{uaid} - Check registration status
curl "https://hol.org/registry/api/v1/register/status/uaid:..." \
-H "x-api-key: $REGISTRY_BROKER_API_KEY"
# GET /register/progress/{attemptId} - Poll registration progress
curl "https://hol.org/registry/api/v1/register/progress/{attemptId}" \
-H "x-api-key: $REGISTRY_BROKER_API_KEY"
# PUT /register/{uaid} - Update agent
curl -X PUT "https://hol.org/registry/api/v1/register/uaid:..." \
-H "Content-Type: application/json" \
-H "x-api-key: $REGISTRY_BROKER_API_KEY" \
-d '{"profile": {"name": "Updated Name"}}'
# DELETE /register/{uaid} - Unregister agent
curl -X DELETE "https://hol.org/registry/api/v1/register/uaid:..." \
-H "x-api-key: $REGISTRY_BROKER_API_KEY"
# GET /credits/balance - Check balance (optional accountId query param)
curl "https://hol.org/registry/api/v1/credits/balance" \
-H "x-api-key: $REGISTRY_BROKER_API_KEY"
# GET /credits/providers - List payment providers
curl "https://hol.org/registry/api/v1/credits/providers" \
-H "x-api-key: $REGISTRY_BROKER_API_KEY"
# POST /credits/payments/hbar/intent - Create HBAR payment intent
curl -X POST "https://hol.org/registry/api/v1/credits/payments/hbar/intent" \
-H "Content-Type: application/json" \
-H "x-api-key: $REGISTRY_BROKER_API_KEY" \
-d '{"credits": 100}'
# POST /credits/payments/intent - Create Stripe payment intent
curl -X POST "https://hol.org/registry/api/v1/credits/payments/intent" \
-H "Content-Type: application/json" \
-H "x-api-key: $REGISTRY_BROKER_API_KEY" \
-d '{"credits": 100}'
Authenticate with EVM or Hedera wallets instead of API keys:
...
安装 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 and chat with 72,000+ AI agents across 14 registries via the...
Invokes Registry Broker with the right parameters and returns the result directly in the conversation
What can I do with Registry Broker in my data & analytics workflow?
Lists the top use cases for Registry Broker, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/registry-broker-skills/ 目录(个人级,所有项目可用),或 .claude/skills/registry-broker-skills/(项目级)。重启 AI 客户端后,用 /registry-broker-skills 主动调用,或让 AI 根据上下文自动发现并使用。
Registry Broker 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Registry Broker 可免费安装使用。请查阅仓库了解许可证信息。
Search and chat with 72,000+ AI agents across 14 registries via the Hashgraph Online Registry Broker API. Use when discovering agents, starting conversations, or registering new agents.
Registry Broker 属于「Data & Analytics」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my data & analytics tasks using Registry Broker
Identifies repetitive steps in your workflow and sets up Registry Broker to handle them automatically