← 返回 Skills 市场
Multi Agent Group Chat
作者
harven-droid
· GitHub ↗
· v2.0.0
· MIT-0
365
总下载
1
收藏
2
当前安装
1
版本数
在 OpenClaw 中安装
/install multi-agent-group-chat
功能描述
多 Agent 群聊协作插件。子 Agent 完成 sessions_send 任务后,自动将回复发送到来源群聊。 支持 Telegram 和飞书,无需配置群 ID,自动检测消息来源。 适用于:多 Bot 协作、团队分工、群聊表演等场景。
使用说明 (SKILL.md)
Multi-Agent Group Chat Plugin
多 Agent 群聊协作插件,让 AI 团队在群里"讨论"起来。
功能
- ✅ 子 Agent 完成任务后,自动发到群里
- ✅ 自动检测来源群,无需配置群 ID
- ✅ 支持 Telegram 和飞书
- ✅ 仅处理 sessions_send 内部任务,不影响正常对话
架构
用户 @Boss → Boss 分配任务 → 子 Agent 执行
↓
【插件自动转发到群】
↓
用户在群里看到讨论过程
安装
方式 1:从 ClawHub 安装
clawhub install multi-agent-chat
方式 2:手动安装
复制 index.ts 和 openclaw.plugin.json 到:
~/.openclaw/extensions/multi-agent-chat/
配置
在 openclaw.json 中启用插件:
{
"plugins": {
"allow": ["multi-agent-chat"],
"entries": {
"multi-agent-chat": {
"enabled": true
}
}
}
}
配套 Agent 配置
需要配置多个 Agent:
{
"agents": {
"entries": {
"boss": { "workspace": "~/.openclaw/agents/boss" },
"coder": { "workspace": "~/.openclaw/agents/coder" },
"writer": { "workspace": "~/.openclaw/agents/writer" }
}
},
"channels": {
"telegram": {
"accounts": {
"boss": { "token": "BOT_TOKEN_1", "agent": "boss" },
"coder": { "token": "BOT_TOKEN_2", "agent": "coder" },
"writer": { "token": "BOT_TOKEN_3", "agent": "writer" }
},
"groupPolicy": "open"
}
}
}
使用方式
- 创建 Telegram 群
- 拉入多个 Bot
- @BossBot 发任务
- 观察各 Agent 在群里讨论
工作原理
- Boss Agent 用
sessions_send给子 Agent 发任务 - 子 Agent 完成任务后回复
- 插件监听
agent_end事件 - 检测到是
sessions_send来的任务 - 自动将回复发到来源群
注意事项
- 需要 OpenClaw 内置的 announce 机制配合
- 子 Agent 的结果会同时:返回给 Boss + 发到群里
- 插件不会影响正常的用户对话
作者
OpenClaw 社区
安全使用建议
This plugin appears to do what it says, but you should: (1) test it in a safe/trusted group before enabling widely, (2) ensure sensitive agents or tasks are not run in contexts that will be forwarded, (3) verify your openclaw.json bot token mappings so messages are sent by the expected accounts, (4) consider adding filtering/sanitization or stricter detection (so only specific session sources are forwarded), and (5) audit logs/monitor message sends after enabling. If you need stricter guarantees, request a code change to tighten the session-source detection and to allow content filtering or explicit allowlists for group IDs or agents.
功能分析
Type: OpenClaw Skill
Name: multi-agent-group-chat
Version: 2.0.0
The plugin is a legitimate tool designed to facilitate multi-agent collaboration by automatically forwarding sub-agent responses back to the original group chat (Telegram or Feishu). The logic in `index.ts` correctly identifies internal tasks triggered by `sessions_send` and uses standard OpenClaw messaging APIs to route replies. No evidence of data exfiltration, unauthorized command execution, or malicious intent was found in the code or instructions.
能力评估
Purpose & Capability
Name/description, SKILL.md, openclaw.plugin.json, and index.ts all describe the same capability: detect sessions_send sub-agent results and forward replies to the source chat (Telegram/Feishu) using the host runtime APIs. The plugin does not request unrelated credentials or binaries.
Instruction Scope
SKILL.md and the code limit behavior to handling 'sessions_send' internal tasks and use only platform APIs (gateway.rpc / runtime.message.send / api.message.send). However the detection logic is string-based (includes 'sessions_send', 'session_send', 'subagent', or presence of parentSessionKey) which can be permissive and cause false positives. The plugin forwards the full reply without sanitization, which could leak sensitive data from sub-agent outputs to group chats.
Install Mechanism
No install spec that downloads or executes remote code; files are provided and installation is manual or via ClawHub. No network downloads or unusual install paths are present in the bundle.
Credentials
The plugin declares no environment variables or credentials. The SKILL.md expects bot tokens/config to be present in the OpenClaw configuration (openclaw.json), which is appropriate for sending messages. There are no unrelated credential requests.
Persistence & Privilege
always:false (normal). The plugin listens for agent_end events and will act automatically when those events occur (normal for a plugin). Combined with automatic forwarding behavior, this gives it the ability to exfiltrate any sub-agent reply to the originating group if misconfigured — consider scope and enablement carefully.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install multi-agent-group-chat - 安装完成后,直接呼叫该 Skill 的名称或使用
/multi-agent-group-chat触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v2.0.0
首次发布:多Agent群聊协作,支持Telegram/飞书,自动检测来源群
元数据
常见问题
Multi Agent Group Chat 是什么?
多 Agent 群聊协作插件。子 Agent 完成 sessions_send 任务后,自动将回复发送到来源群聊。 支持 Telegram 和飞书,无需配置群 ID,自动检测消息来源。 适用于:多 Bot 协作、团队分工、群聊表演等场景。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 365 次。
如何安装 Multi Agent Group Chat?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install multi-agent-group-chat」即可一键安装,无需额外配置。
Multi Agent Group Chat 是免费的吗?
是的,Multi Agent Group Chat 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Multi Agent Group Chat 支持哪些平台?
Multi Agent Group Chat 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Multi Agent Group Chat?
由 harven-droid(@harven-droid)开发并维护,当前版本 v2.0.0。
推荐 Skills