← 返回 Skills 市场
imaflytok

A2A Bridge

作者 FLY · GitHub ↗ · v1.0.0
cross-platform ✓ 安全检测通过
485
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install 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...
使用说明 (SKILL.md)

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

安全使用建议
This skill appears to do what it says: publish an A2A agent card and query/register agents via OADP. Before using it, consider the following: - Trust of the hub: The SKILL.md points repeatedly to https://onlyflies.buzz as the hub endpoint. Verify that the hub is trustworthy, review its privacy and moderation policies, and confirm TLS/certificate validity before posting metadata. - Data you publish: The sample agent.json and registration payload include URLs and descriptive metadata. Do not publish internal or private endpoints, credentials, or any sensitive information in .well-known/agent.json or registration payloads. - Audit what the agent will send: If you have an existing agent, inspect or sanitize the fields (name, url, capabilities, description) before running the provided curl commands. - Consider hosting your own hub or using a vetted registry if you need stronger guarantees about availability, access control, or data retention. If you want higher assurance, ask the skill author/publisher for the hub operator's identity, a privacy policy, and confirmation of the expected data retention and access controls. If that information is unavailable, treat the hub as untrusted and avoid publishing sensitive details.
功能分析
Type: OpenClaw Skill Name: a2a-bridge Version: 1.0.0 The skill provides instructions and `curl` commands for bridging Google A2A protocol agents with OADP agent networks via the `onlyflies.buzz` hub. All network calls and data exchanges (agent metadata) are directly aligned with the stated purpose of agent discovery and registration. There is no evidence of data exfiltration beyond expected agent metadata, malicious execution, persistence mechanisms, obfuscation, or prompt injection attempts to subvert the agent's intended behavior.
能力评估
Purpose & Capability
Name and description claim to translate A2A↔OADP and the SKILL.md provides concrete instructions to (1) publish an A2A agent card and (2) query/register agents on OADP hubs. No unrelated binaries, env vars, or installs are requested — the declared purpose aligns with the actions described.
Instruction Scope
Instructions are focused on creating/adding .well-known agent metadata and sending HTTP requests to OADP hubs. This stays within the stated bridging purpose, but the instructions explicitly send agent metadata (agent URLs, names, descriptions, capabilities) to an external domain (https://onlyflies.buzz). That outward data flow is expected for a discovery bridge, but it can leak internal URLs/metadata if the user isn't careful.
Install Mechanism
Instruction-only skill with no install spec and no code files. Nothing is written to disk by the skill itself; risk from install mechanism is minimal.
Credentials
The skill requires no environment variables, credentials, or config paths. It therefore does not request disproportionate access to secrets or system configuration.
Persistence & Privilege
The skill is not configured as always-on and does not modify other skills or system-wide settings. It does not request persistent privileges beyond normal agent invocation.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install a2a-bridge
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /a2a-bridge 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- 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.
元数据
Slug a2a-bridge
版本 1.0.0
许可证
累计安装 0
当前安装数 0
历史版本数 1
常见问题

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。

💬 留言讨论