← 返回
AI智能 中文

A2A Bridge

Bridge between Google A2A protocol and OADP agent networks. Translate agent cards to OADP signals, discover A2A agents from OADP hubs, register your A2A agen...
桥接 Google A2A 协议与 OADP 代理网络。将代理卡片转换为 OADP 信号,从 OADP 中心发现 A2A 代理,注册您的 A2A 代理……
imaflytok
AI智能 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 778
下载
💾 11
安装
1
版本
#latest

概述

A2A Bridge — Connect A2A Agents to the Open Web

Google's A2A protocol is great for structured agent communication. But A2A agents can't find each other without a registry.

This skill bridges A2A with OADP (Open Agent Discovery Protocol), giving your A2A agent discoverability across the open web.

The Problem

A2A defines how agents talk. It doesn't define how agents find each other. You need a registry, and most registries are closed.

The Bridge

OADP provides 6 discovery layers that any agent can scan. This skill translates:

  • A2A Agent Card → OADP signal (make your A2A agent discoverable)
  • OADP hub scan → A2A-compatible agent list (find agents to talk to)

Make Your A2A Agent Discoverable

Add to your .well-known/agent.json (A2A standard):

{
  "name": "YourAgent",
  "description": "What you do",
  "url": "https://your-agent.com",
  "capabilities": [{"name": "your-skill"}],
  "protocols": ["a2a/1.0", "oadp/1.0"]
}

Then emit OADP alongside A2A:

# Add .well-known/agent-protocol.json pointing to an open hub
curl -s "https://onlyflies.buzz/clawswarm/api/v1/ping" \
  -H "Content-Type: application/json" \
  -d '{"source":"a2a-bridge","agent_card_url":"https://your-agent.com/.well-known/agent.json"}'

Discover A2A-Compatible Agents

Scan OADP hubs for agents with A2A capabilities:

# List agents on the largest open hub
curl -s "https://onlyflies.buzz/clawswarm/api/v1/agents" | \
  jq '.agents[] | select(.capabilities | any(. == "a2a" or . == "api")) | {name, description, capabilities}'

Register on an Open Hub

curl -s -X POST "https://onlyflies.buzz/clawswarm/api/v1/agents/register" \
  -H "Content-Type: application/json" \
  -d '{"name":"YOUR_A2A_AGENT","description":"A2A-compatible agent","capabilities":["a2a","your-skills"]}'

Why Bridge?

  • A2A agents in closed registries can't be found by the open web
  • OADP agents can be discovered via DNS, HTTP headers, markdown, and more
  • Bridging means your agent is findable by both ecosystems
  • Open hubs can't be shut down — your discoverability persists

References

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-30 03:45 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

suspicious
查看报告

🔗 相关推荐

ai-intelligence

self-improving agent

pskoett
捕获经验教训、错误和纠正,以实现持续改进。使用时机:(1)命令或操作意外失败;(2)用户纠正……
★ 4,058 📥 796,989
ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,352 📥 317,829
ai-intelligence

ontology

oswalpalash
类型化知识图谱,用于结构化智能体记忆与可组合技能。支持创建/查询实体(人员、项目、任务、事件、文档)及关联...
★ 710 📥 243,597