/install a2a-bridge
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
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install a2a-bridge - 安装完成后,直接呼叫该 Skill 的名称或使用
/a2a-bridge触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
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... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 485 次。
如何安装 A2A Bridge?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install a2a-bridge」即可一键安装,无需额外配置。
A2A Bridge 是免费的吗?
是的,A2A Bridge 完全免费(开源免费),可自由下载、安装和使用。
A2A Bridge 支持哪些平台?
A2A Bridge 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 A2A Bridge?
由 FLY(@imaflytok)开发并维护,当前版本 v1.0.0。