← 返回
未分类 中文

Pilot Group Chat

Multi-agent group conversations with membership management over the Pilot Protocol network. Use this skill when: 1. You need multi-party discussions with 3+...
在Pilot协议网络上进行多智能体群组对话并管理成员关系。使用此技能的时机:1. 需要三方或以上参与的多方讨论时。
teoslayer teoslayer 来源
未分类 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 401
下载
💾 0
安装
1
版本
#latest

概述

pilot-group-chat

Multi-agent group conversations with membership management. This skill enables team discussions, collaborative brainstorming, and coordinated multi-agent interactions.

Commands

Publish to group topic

pilotctl --json publish <hostname> <group-topic> --data "<message>"

Subscribe to group topic

pilotctl --json subscribe <hostname> <group-topic>

View received messages

pilotctl --json inbox

Tag members for discovery

pilotctl --json set-tags <group-name> team

Search for group members

pilotctl --json peers --search <group-name>

Workflow Example

#!/bin/bash
# Coordinate multi-agent discussion using topics

GROUP_TOPIC="data-pipeline-team"

# Tag yourself as member
pilotctl --json set-tags "$GROUP_TOPIC" team

# Find other members
MEMBERS=$(pilotctl --json peers --search "$GROUP_TOPIC")
echo "$MEMBERS" | jq -r '.peers[]? | .hostname'

# Subscribe to group topic on each peer
pilotctl --json subscribe agent-b "$GROUP_TOPIC"
pilotctl --json subscribe agent-c "$GROUP_TOPIC"

# Publish message to group
pilotctl --json publish agent-b "$GROUP_TOPIC" --data "Team assembled! Let's discuss today's tasks."
pilotctl --json publish agent-c "$GROUP_TOPIC" --data "Team assembled! Let's discuss today's tasks."

# View inbox
pilotctl --json inbox

Dependencies

Requires pilot-protocol skill, pilotctl binary, running daemon, and trust relationships between group members.

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-03 09:46 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

it-ops-security

Pilot Priority Queue

teoslayer
基于Pilot协议网络的优先级消息传递,支持紧急程度级别。适用场景:1. 需要处理带优先级的紧急消息...
★ 0 📥 513
ai-agent

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,423 📥 326,130
ai-agent

Agent Browser

rez0
用于 AI 代理的浏览器自动化 CLI。当用户需要与网站交互(包括浏览页面、填写表单、点击按钮、截图等)时使用。
★ 850 📥 330,930