快速开始
SMS
OpenClaw 通过 Twilio 电话号码或 Messaging Service 接收和发送 SMS。Gateway 网关会注册入站 webhook 路由(默认为 /webhooks/sms),默认验证 Twilio 请求签名,并通过 Twilio 的 Messages API 发回回复。
状态:官方插件,需单独安装。仅支持文本:不支持 MMS/媒体,仅支持私信。
开始之前
你需要:
- 使用
openclaw plugins install @openclaw/sms安装官方 SMS 插件。 - 一个 Twilio 账户,以及支持 SMS 的电话号码或 Twilio Messaging Service。
- Twilio Account SID 和 Auth Token。
- 一个可访问你的 OpenClaw Gateway 网关的公共 HTTPS URL。
- 选择发送者策略:私有使用选择
pairing(默认),预先批准的电话号码选择allowlist,仅在有意提供公开 SMS 访问时选择open。
如果一个 Twilio 号码同时具备这两项能力,它可以同时用于 SMS 和语音通话。SMS webhook 和语音 webhook 需要在 Twilio 中分别配置,并使用不同的 Gateway 网关路径;本页仅介绍 SMS webhook。
快速设置
安装插件
openclaw plugins install @openclaw/sms创建或选择 Twilio 发送者
在 Twilio 中,打开 Phone Numbers > Manage > Active numbers,然后选择一个支持 SMS 的号码。保存以下信息:
- Account SID,例如
ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx - Auth Token
- 发送者电话号码,例如
+15551234567
如果你使用 Messaging Service 而不是固定的发送者号码,请保存 Messaging Service SID,例如 MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx。
配置 SMS 渠道
将以下内容保存为 sms.patch.json5,并修改占位符:
{channels: {sms: { enabled: true, accountSid: "ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", authToken: "twilio-auth-token", fromNumber: "+15551234567", publicWebhookUrl: "https://gateway.example.com/webhooks/sms", dmPolicy: "pairing",},},}应用配置:
openclaw config patch --file ./sms.patch.json5 --dry-runopenclaw config patch --file ./sms.patch.json5将 Twilio 指向 Gateway 网关 webhook
在 Twilio 电话号码设置中,打开 Messaging,并将 A message comes in 设置为:
https://gateway.example.com/webhooks/sms使用 HTTP POST。默认本地路径为 /webhooks/sms;如果需要其他路由,请更改 channels.sms.webhookPath。
暴露准确的 SMS webhook 路径
你的公共 URL 必须将 SMS 路径路由到 Gateway 网关进程(默认端口为 18789)。如果使用 Tailscale Funnel 进行本地测试,请显式暴露 /webhooks/sms:
tailscale funnel --bg --set-path /webhooks/sms http://127.0.0.1:<gateway-port>/webhooks/smstailscale funnel status语音通话和 SMS 使用不同的 webhook 路径。如果同一个 Twilio 号码同时处理这两项服务,请在 Twilio 和隧道中保留这两条路由的配置。
启动 Gateway 网关并批准首位发送者
openclaw gateway向 Twilio 号码发送一条短信。第一条消息会创建设备配对请求。批准该请求:
openclaw pairing list smsopenclaw pairing approve sms <CODE>配对码将在 1 小时后过期。
配置示例
所有键都位于 channels.sms 下(各账户的键位于 channels.sms.accounts.<id> 下):
| 键 | 默认值 | 用途 |
|---|---|---|
enabled |
true |
启用或禁用渠道/账户。 |
accountSid |
— | Twilio Account SID(AC...)。 |
authToken |
— | Twilio Auth Token;纯文本字符串或 SecretRef。 |
fromNumber |
— | E.164 格式的发送者号码。 |
messagingServiceSid |
— | 未解析出 fromNumber 时使用的 Messaging Service SID(MG...)。 |
defaultTo |
— | 发送流程未指定明确目标时使用的默认目的地。 |
webhookPath |
/webhooks/sms |
用于接收 Twilio 入站 webhook 的 Gateway 网关 HTTP 路径。 |
publicWebhookUrl |
— | 在 Twilio 中配置的公共 URL;签名验证需要此项。 |
dangerouslyDisableSignatureValidation |
false |
跳过 X-Twilio-Signature 检查;仅用于本地隧道测试。 |
dmPolicy |
"pairing" |
pairing、allowlist、open 或 disabled。 |
allowFrom |
[] |
允许的 E.164 发送者号码;使用 dmPolicy: "open" 时也可设为 "*"。 |
textChunkLimit |
1500 |
每个出站 SMS 分块的最大字符数。 |
accounts, defaultAccount |
— | 多账户映射和默认账户 ID。 |
配置文件
如果希望渠道定义随 Gateway 网关配置一起保存,请使用配置文件进行设置:
{ channels: { sms: { enabled: true, accountSid: "ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", authToken: "twilio-auth-token", fromNumber: "+15551234567", publicWebhookUrl: "https://gateway.example.com/webhooks/sms", dmPolicy: "pairing", }, },}环境变量
环境变量仅应用于默认账户;配置值优先于环境变量值。
| 变量 | 映射到 |
|---|---|
TWILIO_ACCOUNT_SID |
accountSid |
TWILIO_AUTH_TOKEN |
authToken |
TWILIO_PHONE_NUMBER(别名 TWILIO_SMS_FROM) |
fromNumber |
TWILIO_MESSAGING_SERVICE_SID |
messagingServiceSid |
SMS_PUBLIC_WEBHOOK_URL |
publicWebhookUrl |
SMS_WEBHOOK_PATH |
webhookPath |
SMS_ALLOWED_USERS |
allowFrom(以逗号分隔) |
SMS_TEXT_CHUNK_LIMIT |
textChunkLimit |
SMS_DANGEROUSLY_DISABLE_SIGNATURE_VALIDATION |
dangerouslyDisableSignatureValidation("true") |
export TWILIO_ACCOUNT_SID="ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"export TWILIO_AUTH_TOKEN="<twilio-auth-token>"export TWILIO_PHONE_NUMBER="+15551234567"export SMS_PUBLIC_WEBHOOK_URL="https://gateway.example.com/webhooks/sms"然后在配置中启用该渠道:
{ channels: { sms: { enabled: true, dmPolicy: "pairing", }, },}SecretRef 身份验证令牌
authToken 可以是 SecretRef(source: "env" | "file" | "exec")。如果希望 Gateway 网关从 OpenClaw 密钥运行时解析 Twilio Auth Token,而不是在配置中存储纯文本,请使用此方式:
{ channels: { sms: { enabled: true, accountSid: "ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", authToken: { source: "env", provider: "default", id: "TWILIO_AUTH_TOKEN" }, fromNumber: "+15551234567", publicWebhookUrl: "https://gateway.example.com/webhooks/sms", dmPolicy: "pairing", }, },}Gateway 网关运行时必须能够访问引用的环境变量或密钥提供商。更改主机环境变量后,请重启受管理的 Gateway 网关进程。
Messaging Service 发送者
如果应由 Twilio 通过 Messaging Service 选择发送者,请使用 messagingServiceSid,而不是 fromNumber:
{ channels: { sms: { enabled: true, accountSid: "ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", authToken: "twilio-auth-token", messagingServiceSid: "MGxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", publicWebhookUrl: "https://gateway.example.com/webhooks/sms", dmPolicy: "pairing", }, },}如果配置和环境变量解析完成后同时存在 fromNumber 和 messagingServiceSid,则使用 fromNumber。
默认出站目标
如果自动化或智能体发起的投递在发送流程未指定明确目标时应使用默认目的地,请设置 defaultTo:
{ channels: { sms: { enabled: true, accountSid: "ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", authToken: "twilio-auth-token", fromNumber: "+15551234567", defaultTo: "+15557654321", publicWebhookUrl: "https://gateway.example.com/webhooks/sms", }, },}访问控制
channels.sms.dmPolicy 控制直接 SMS 访问:
pairing(默认):未知发送者会收到配对码;使用openclaw pairing approve sms <CODE>批准。allowlist:仅处理allowFrom中的发送者。空的allowFrom会拒绝所有发送者(Gateway 网关会记录启动警告)。open:配置验证要求allowFrom包含"*"。如果没有通配符,则只有列出的号码可以聊天。disabled:丢弃所有入站私信。
allowFrom 条目应为 E.164 格式的电话号码,例如 +15551234567。系统接受并规范化 sms: 和 twilio-sms: 前缀。对于私人助理,建议使用 dmPolicy: "allowlist" 并显式列出电话号码:
{ channels: { sms: { enabled: true, accountSid: "ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", authToken: "twilio-auth-token", fromNumber: "+15551234567", publicWebhookUrl: "https://gateway.example.com/webhooks/sms", dmPolicy: "allowlist", allowFrom: ["+15557654321"], }, },}发送 SMS
选择 SMS 渠道后,目标可以使用不带前缀的 E.164 号码或 sms: 前缀:
openclaw message send --channel sms --target sms:+15551234567 --message "hello"当渠道选择为隐式时,twilio-sms: 前缀会选择此渠道,但不会占用 sms: 服务前缀;iMessage 使用后者为自己的目标选择运营商 SMS 投递:
openclaw message send --target twilio-sms:+15551234567 --message "hello"CLI 要求显式指定 --target。defaultTo 用于可从渠道配置中解析目标的自动化和智能体发起的投递路径。
对于入站 SMS 对话,智能体回复会通过已配置的 Twilio 发送者自动发回给发送者。
SMS 输出为纯文本。OpenClaw 会移除 Markdown、展平围栏代码块、将链接改写为 标签 (url),并在通过 Twilio 发送之前,将较长的回复拆分为每块最多 textChunkLimit 个字符(默认为 1500)的分块。
验证设置
Gateway 网关启动后:
- 确认 Gateway 网关日志中显示了 SMS webhook 路由。
- 运行 Twilio 侧探测(检查已配置的 Twilio webhook URL/方法和最近的入站错误):
openclaw channels capabilities --channel smsopenclaw channels status --channel sms --probe --json- 用你的手机向 Twilio 号码发送一条 SMS。
- 运行
openclaw pairing list sms。 - 使用
openclaw pairing approve sms <CODE>批准配对码。 - 再发送一条 SMS,并确认智能体回复。
如需仅测试出站发送,请使用:
openclaw message send --channel sms --target sms:+15557654321 --message "OpenClaw SMS test"从 macOS iMessage/SMS 进行端到端测试
在可通过“信息”发送运营商 SMS 的 Mac 上,你可以使用 imsg 驱动发送端,无需操作手机:
imsg send --to "+15551234567" --service sms --text "OpenClaw SMS E2E $(date -u +%Y%m%dT%H%M%SZ)" --jsonopenclaw pairing list smsopenclaw pairing approve sms <CODE>imsg send --to "+15551234567" --service sms --text "reply exactly SMS pong" --json第一条消息应创建一个配对请求。第二条消息应通过 Twilio 收到智能体回复。
Webhook 安全性
默认情况下,OpenClaw 使用 publicWebhookUrl 和 authToken 验证 X-Twilio-Signature。请确保 publicWebhookUrl 的端点部分与 Twilio 中配置的 URL 逐字节一致,包括协议、主机、路径和查询字符串。按照 Twilio 的要求,OpenClaw 在计算签名时会排除 Twilio 连接覆盖片段(#...)。
除签名验证外,webhook 路由还独立执行以下限制:
- 仅允许
POST。 - 每个来源 IP 每分钟最多 30 个请求(超过后返回 HTTP 429)。
- 载荷中的
AccountSid必须与配置的accountSid匹配(否则返回 HTTP 403)。 - 重复使用的
MessageSid值会在 10 分钟内去重。 - 每个 SMS 账户的重放缓存最多保留 10,000 个仍有效的消息 SID。当所有槽位都仍有效时,该账户的新 webhook 将以 HTTP 429 和
Retry-After标头进行故障关闭式拒绝,直到最早的槽位过期。 - 超过 32 KB 的请求正文会被拒绝。
Twilio 默认不会重试 HTTP 429,也未说明支持 Retry-After。#rp=4xx 和 #rp=all 连接覆盖可启用 4xx 重试,但 Twilio 会将完整重试事务限制在 15 秒内,因此重试仍可能在重放缓存槽位过期前结束。当另一个处理程序必须接收投递失败的消息时,请配置回退 URL;应将 429 视为故障关闭式拒绝,而不是可靠的反压机制。
仅在本地隧道测试时,可以设置:
{ channels: { sms: { dangerouslyDisableSignatureValidation: true, }, },}不要在公开的 Gateway 网关上禁用签名验证。
多账户配置
当你运营多个 Twilio 号码时,请使用 accounts:
{ channels: { sms: { accounts: { support: { enabled: true, accountSid: "ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", authToken: "twilio-auth-token", fromNumber: "+15551234567", publicWebhookUrl: "https://gateway.example.com/webhooks/sms/support", webhookPath: "/webhooks/sms/support", dmPolicy: "allowlist", allowFrom: ["+15557654321"], }, }, }, },}每个账户必须使用不同的 webhookPath;如果某个 webhook 路由的路径已归另一个账户所有,Gateway 网关将拒绝注册该路由。TWILIO_*/SMS_* 环境变量回退仅适用于默认账户;可设置 defaultAccount 来更改默认账户。
故障排查
Twilio 返回 403,或 OpenClaw 拒绝 webhook
检查 publicWebhookUrl 是否与 Twilio 中配置的 URL 完全匹配,包括协议、主机、路径和查询字符串。Twilio 对公开 URL 字符串进行签名,因此代理重写和备用主机名可能导致签名验证失败。
如果 403 错误显示 Invalid account,表示入站载荷的 AccountSid 与配置的 accountSid 不匹配;请检查 webhook 是否指向拥有该号码的账户。
未出现配对请求
检查 Twilio 号码的 Messaging webhook URL 和方法。它必须指向 SMS webhook URL 并使用 POST。还要确认可以从公共互联网或通过你的隧道访问 Gateway 网关。
如果 Twilio 消息日志显示错误 11200,则表示 Twilio 已接受入站 SMS,但无法访问你的 webhook。请检查:
- Twilio Messaging > A message comes in 指向
publicWebhookUrl。 - 方法为
POST。 - 隧道或反向代理公开了准确的
webhookPath;对于 Tailscale Funnel,请运行tailscale funnel status并确认其中列出了/webhooks/sms。 publicWebhookUrl使用与 Twilio 发送请求时相同的协议、主机、路径和查询字符串,以便签名验证能够重现已签名的 URL。
openclaw channels status --channel sms --probe 会同时显示不匹配的 Twilio webhook 设置和最近的 11200 错误。
出站发送失败
确认 accountSid、authToken 以及 fromNumber 或 messagingServiceSid 已成功解析。如果使用 Twilio 试用账户,可能需要先在 Twilio 中验证目标号码,才能发送出站 SMS。
消息已到达,但智能体未回复
检查 dmPolicy 和 allowFrom。使用默认的 pairing 策略时,必须先批准发送者,之后才会处理正常的智能体轮次。