Moltbot 指南

设置 Moltbot 实现多平台消息广播和自动化。

概述

Moltbot 是 OpenClaw 生态中的多平台消息机器人。它支持跨渠道的自动消息发送、广播和工作流自动化。

功能特性

  • 多平台消息广播
  • 定时消息发送
  • 基于模板的回复
  • Webhook 集成
  • 渠道特定格式化

配置

{
  "agents": {
    "moltbot": {
      "provider": "openai",
      "model": "gpt-4o-mini",
      "systemPrompt": "You are Moltbot, a multi-platform messaging assistant."
    }
  }
}

消息广播

向多个渠道发送消息:

openclaw message send --target all --message "系统更新通知"

定时消息

{
  "schedules": [
    {
      "cron": "0 9 * * *",
      "message": "早上好!每日简报...",
      "channels": ["telegram", "whatsapp"]
    }
  ]
}

下一步