Agent Send
openclaw agent(直接代理运行)
openclaw agent 运行单次代理轮次,无需入站聊天消息。默认情况下它会通过网关执行;添加 --local 可强制在当前机器上使用嵌入式运行时。
行为
- 必需参数:
--message <文本> - 会话选择:
--to <目标>推导会话 key(群组/渠道目标保持隔离;直接聊天折叠为main),或--session-id <id>通过 ID 重用已有会话,或--agent <代理ID>直接指向已配置的代理(使用该代理的main会话 key)
- 运行与正常入站回复相同的嵌入式代理运行时。
- thinking/verbose 标志会持久化到会话存储中。
- 输出:
- 默认:打印回复文本(加上
MEDIA:行) --json:打印结构化负载 + 元数据
- 默认:打印回复文本(加上
- 可选择通过
--deliver+--channel将回复投递回渠道(目标格式与openclaw message --target一致)。 - 使用
--reply-channel/--reply-to/--reply-account可在不更改会话的情况下覆盖投递设置。
如果网关不可达,CLI 会回退到嵌入式本地运行。
示例
bash
openclaw agent --to +15555550123 --message "status update"
openclaw agent --agent ops --message "Summarize logs"
openclaw agent --session-id 1234 --message "Summarize inbox" --thinking medium
openclaw agent --to +15555550123 --message "Trace logs" --verbose on --json
openclaw agent --to +15555550123 --message "Summon reply" --deliver
openclaw agent --agent ops --message "Generate report" --deliver --reply-channel slack --reply-to "#reports"标志参数
--local:本地运行(需要在 shell 中配置模型提供商 API 密钥)--deliver:将回复发送到选定的渠道--channel:投递渠道(whatsapp|telegram|discord|googlechat|slack|signal|imessage,默认:whatsapp)--reply-to:投递目标覆盖--reply-channel:投递渠道覆盖--reply-account:投递账户 ID 覆盖--thinking <级别>:持久化 thinking 级别(仅限 GPT-5.2 + Codex 模型)--verbose <级别>:持久化 verbose 级别--timeout <毫秒>:覆盖代理超时时间--json:输出结构化 JSON
