Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
支持Agent间消息传递、广播、状态同步和共享工作空间,提高多Agent团队协作效率并解决通信超时问题。
支持Agent间消息传递、广播、状态同步和共享工作空间,提高多Agent团队协作效率并解决通信超时问题。
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
一个通用的 Agent 间沟通技能,基于 WebSocket 实现实时双向通信,解决多 Agent 团队协作中的沟通问题。
┌─────────────────────────────────────────────────────┐ │ WebSocket 消息代理架构 │ ├─────────────────────────────────────────────────────┤ │ │ │ Agent A ◄────► WebSocket ◄────► Agent B │ │ Server │ │ Agent C ◄──────────────────────► Agent D │ │ │ │ ✅ 实时双向通信 │ │ ✅ 无需轮询 │ │ ✅ 延迟 <50ms │ │ ✅ 离线消息队列 │ └─────────────────────────────────────────────────────┘
🚀 WebSocket 实时通信 - 高性能双向通信 📨 消息传递 - Agent 之间快速发送消息 📢 广播消息 - 一次发送给多个 Agent 🗂️ 共享工作空间 - 文件驱动的协作 🟢 状态同步 - Agent 在线状态检测 💾 离线消息 - 离线 Agent 自动排队
# 安装依赖 pip install websockets # 通过 ClawHub 安装 openclaw skill install agent-communication
python3 scripts/broker.py
# WebSocket 模式(优先) python3 scripts/send.py --from pm --to dev --message "开始开发" # 文件模式(回退) python3 scripts/send.py --from pm --to dev --message "开始开发" --file
import asyncio from websocket_client import AgentClient async def main(): client = AgentClient("pm", "ws://localhost:8765") # 连接并监听 async def handle_message(msg): print(f"收到消息: {msg}") await client.run(handle_message) asyncio.run(main())
指标文件方案WebSocket 方案延迟500ms<50ms实时性轮询即时CPU 占用中低离线支持✅✅
agent-communication/ ├── scripts/ │ ├── broker.py # WebSocket 消息代理 │ ├── websocket_client.py # Agent 客户端 │ ├── send.py # 发送消息(智能选择) │ ├── broadcast.py # 广播消息 │ ├── status.py # 状态管理 │ └── workspace.py # 共享工作空间 ├── data/ │ ├── messages/ # 消息存储 │ ├── status/ # Agent 状态 │ └── workspace/ # 共享数据 └── templates/ └── config.json # 配置文件
问题解决方案sessions_send 超时WebSocket 实时通信Agent 无法直接沟通消息代理转发团队协作效率低即时消息传递
版本: 2.0.0 更新: WebSocket 实时通信 作者: momoflowers_bot
Messaging, meetings, inboxes, CRM, and teammate communication surfaces.
Largest current source with strong distribution and engagement signals.