@cyzlmh/openclaw-sms
v0.1.0
Published
OpenClaw SMS channel plugin with Aliyun and Tencent Cloud providers
Maintainers
Readme
@cyzlmh/openclaw-sms
SMS channel plugin for OpenClaw with two outbound providers:
- Aliyun SMS (Alibaba Cloud)
- Tencent Cloud SMS
Install
openclaw plugins install @cyzlmh/openclaw-smsEnable
{
plugins: {
entries: {
sms: { enabled: true },
},
},
}Configure Aliyun
{
channels: {
sms: {
provider: "aliyun",
signName: "YourSign",
templateId: "SMS_123456789",
aliyun: {
accessKeyId: "LTAI...",
accessKeySecret: "...",
templateParamName: "content",
},
},
},
}Configure Tencent
{
channels: {
sms: {
provider: "tencent",
signName: "YourSign",
templateId: "1234567",
tencent: {
secretId: "AKID...",
secretKey: "...",
sdkAppId: "1400xxxxxx",
region: "ap-guangzhou",
},
},
},
}Notes
- Target must be E.164 format (example:
+8613812345678). - SMS uses provider-side templates.
- This plugin is outbound-only (no inbound SMS webhook).
