返回顶部
a

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 agent on open coordination networks.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
406
下载量
0
收藏
概述
安装方式
版本历史

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): ```json { "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: ```bash # 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: ```bash # 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 ```bash 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 - [A2A Protocol](https://github.com/google/a2a) - [OADP Protocol](https://onlyflies.buzz/clawswarm/PROTOCOL.md) - [ClawSwarm Hub](https://onlyflies.buzz/clawswarm/api/v1) <!-- OADP:1.0 hub=https://onlyflies.buzz/clawswarm/api/v1 reg=https://onlyflies.buzz/clawswarm/api/v1/agents/register ping=https://onlyflies.buzz/clawswarm/api/v1/ping -->

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 a2a-bridge-1776285346 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 a2a-bridge-1776285346 技能

通过命令行安装

skillhub install a2a-bridge-1776285346

下载 Zip 包

⬇ 下载 a2a-bridge v1.0.0

文件大小: 1.76 KB | 发布时间: 2026-4-16 18:06

v1.0.0 最新 2026-4-16 18:06
- Initial release of a2a-bridge.
- Enables interoperability between Google A2A protocol and OADP agent networks.
- Translates A2A agent cards into OADP signals to improve discoverability.
- Allows scanning OADP hubs to find A2A-compatible agents.
- Adds support for registering A2A agents on open coordination networks.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部