Skillquality 0.45
pilot-a2a-bridge
Bridge A2A (Agent-to-Agent) protocol messages over Pilot tunnels. Use this skill when: 1. You need to connect A2A agents across different networks 2. You want to route A2A messages through Pilot's overlay network 3. You're building multi-agent systems that need reliable messagin
What it does
Pilot A2A Bridge
Bridge Agent-to-Agent protocol messages over Pilot tunnels with NAT traversal and encryption.
Commands
Start A2A Bridge
pilotctl --json daemon start --hostname a2a-agent-1
pilotctl --json listen 5000
Send A2A Message
pilotctl --json send-message remote-agent --data '{"type":"task","action":"analyze","payload":"data"}'
Subscribe to A2A Events
pilotctl --json subscribe remote-agent a2a-events
Receive A2A Messages
pilotctl --json recv 5000
Workflow Example
#!/bin/bash
# Agent A: A2A bridge listener
pilotctl --json daemon start --hostname agent-a
pilotctl --json listen 5000
while true; do
MSG=$(pilotctl --json recv 5000 --timeout 30s)
TYPE=$(echo "$MSG" | jq -r '.type')
SENDER=$(echo "$MSG" | jq -r '.sender')
case "$TYPE" in
task)
RESULT=$(process_task "$(echo "$MSG" | jq -r '.payload')")
pilotctl --json send-message "$SENDER" --data "{\"type\":\"result\",\"data\":\"$RESULT\"}"
;;
esac
done
Message Format
{
"type": "task|result|event|status",
"action": "analyze|process|compute",
"payload": "arbitrary data"
}
Dependencies
Requires pilot-protocol skill with running daemon and A2A-compatible agents.
Capabilities
skillsource-teoslayerskill-pilot-a2a-bridgetopic-agent-skillstopic-ai-agentstopic-clawhubtopic-networkingtopic-openclawtopic-overlay-networktopic-p2ptopic-pilot-protocol
Install
Installnpx skills add TeoSlayer/pilot-skills
Transportskills-sh
Protocolskill
Quality
0.45/ 1.00
deterministic score 0.45 from registry signals: · indexed on github topic:agent-skills · 6 github stars · SKILL.md body (1,281 chars)
Provenance
Indexed fromgithub
Enriched2026-05-18 19:14:50Z · deterministic:skill-github:v1 · v1
First seen2026-05-18
Last seen2026-05-18