/install ceo-notify-agents
name: ceo-notify-agents description: CEO向其他Agent发送通知(通过共享记忆文件) triggers:
-
"通知 {targetAgents} {message}"
-
"告诉 {targetAgents} {message}"
-
"提醒 {targetAgents} {message}"
-
"给 {targetAgents} 发消息 {message}"
-
"请通知 {targetAgents} {message}"
-
"通知一下 {targetAgents} {message}"
-
"让 {targetAgents} 知道 {message}" requires: [] actions:
-
name: write_notification tool: exec params: command: | #!/bin/bash TARGETS="{{targetAgents}}" MESSAGE="{{message}}" NOTIFICATION_DIR="/Users/anran/Documents/openclaw/shared_memory/notifications" TIMESTAMP=$(date +%Y%m%d_%H%M%S)
mkdir -p "$NOTIFICATION_DIR" IFS=',' read -ra AGENTS \x3C\x3C\x3C "$TARGETS" for raw in "${AGENTS[@]}"; do agent=$(echo "$raw" | xargs) echo "$TIMESTAMP: $MESSAGE" >> "$NOTIFICATION_DIR/${agent}.log" done echo "$TIMESTAMP: 通知 $TARGETS - $MESSAGE" >> "$NOTIFICATION_DIR/all.log" /Users/anran/.npm-global/bin/openclaw memory index --agent main echo "通知已写入共享记忆,目标Agent下次对话时将看到。"
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install ceo-notify-agents - 安装完成后,直接呼叫该 Skill 的名称或使用
/ceo-notify-agents触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Ceo Notify Agents 是什么?
Automation skill for Ceo Notify Agents. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 343 次。
如何安装 Ceo Notify Agents?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install ceo-notify-agents」即可一键安装,无需额外配置。
Ceo Notify Agents 是免费的吗?
是的,Ceo Notify Agents 完全免费(开源免费),可自由下载、安装和使用。
Ceo Notify Agents 支持哪些平台?
Ceo Notify Agents 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Ceo Notify Agents?
由 Stingan(@stingan)开发并维护,当前版本 v1.0.0。