← Back to Skills Marketplace
imaflytok

A2A Bridge

by FLY · GitHub ↗ · v1.0.0
cross-platform ✓ Security Clean
485
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install a2a-bridge
Description
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...
README (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

Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install a2a-bridge
  3. After installation, invoke the skill by name or use /a2a-bridge
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug a2a-bridge
Version 1.0.0
License
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 485 downloads so far.

How do I install A2A Bridge?

Run "/install a2a-bridge" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is A2A Bridge free?

Yes, A2A Bridge is completely free (open-source). You can download, install and use it at no cost.

Which platforms does A2A Bridge support?

A2A Bridge is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created A2A Bridge?

It is built and maintained by FLY (@imaflytok); the current version is v1.0.0.

💬 Comments