📦 Pilot A2a Bridge — 技能工具

v1.0.0

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 wan...

0· 58·1 当前·1 累计
teoslayer 头像by @teoslayer (Calin Teodor)·MIT-0
下载技能包
License
MIT-0
最后更新
2026/4/9
0
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
The skill's requests and runtime instructions are consistent with its stated purpose (bridging A2A messages via the pilotctl daemon) and there are no unexplained credentials, installs, or persistence demands.
评估建议
This skill appears coherent, but review these practical points before installing: 1) Verify pilotctl is the official binary from pilotprotocol.network (a messaging bridge can forward any data, so you must trust the binary and daemon). 2) The examples use jq and reference a process_task function — ensure your runtime has jq or adapt the scripts and implement secure handling of received payloads. 3) Because it enables agent-to-agent messaging, avoid sending secrets or sensitive files through the b...
详细分析 ▾
用途与能力
Name/description match the requested resources: the skill is an instruction-only bridge that expects the pilotctl binary and a running pilot daemon, which is coherent for bridging A2A messages across networks.
指令范围
Instructions stay within the stated purpose (starting daemon, listen/send/recv/subscribe). Minor omissions: the example scripts assume jq and a process_task function that are not declared; the skill instructs agents to send arbitrary JSON payloads, which is expected for messaging but also means the skill can carry any data the agent provides (normal for a messaging bridge).
安装机制
No install spec and no code files (instruction-only) — nothing is downloaded or written to disk by the skill itself, which is low risk.
凭证需求
The skill requires no environment variables or credentials. It only needs the pilotctl binary and a running daemon, which is proportionate to its purpose.
持久化与权限
always:false and no special privileges requested. The skill does not request permanent presence or modify other skills' configs.
安全有层次,运行前请审查代码。

License

MIT-0

可自由使用、修改和再分发,无需署名。

运行时依赖

无特殊依赖

版本

latestv1.0.02026/4/9

Initial release for bridging Agent-to-Agent (A2A) protocol messages over Pilot tunnels. - Enables reliable A2A messaging across different networks using Pilot’s encrypted overlay. - Supports sending, receiving, and subscribing to A2A messages between agents behind NAT. - Designed for multi-agent systems needing robust, cross-network communication. - Requires a running pilotctl daemon and pilot-protocol skill for operation. - Includes example workflows and command usage for rapid integration.

无害

安装命令

点击复制
官方npx clawhub@latest install pilot-a2a-bridge
镜像加速npx clawhub@latest install pilot-a2a-bridge --registry https://cn.longxiaskill.com

技能文档

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.

数据来源ClawHub ↗ · 中文优化:龙虾技能库