一键导入
sms-tencent
Send SMS via Tencent Cloud (腾讯云短信)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Send SMS via Tencent Cloud (腾讯云短信)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create vertical short-form videos from YouTube with auto-highlights, subtitles, and thumbnails
Delivers a personalized morning briefing with tasks, emails, calendar events, news, and system status.
Intelligent email management with auto-classification, bulk processing, and smart replies
Complete email OAuth authentication flows interactively via Telegram chat
Configure OAuth 2.0 authentication for Gmail, Outlook, or Yahoo email accounts
Look up public IP address and geolocation information for any IP or your own
| name | sms-tencent |
| description | Send SMS via Tencent Cloud (腾讯云短信) |
| version | 1.0.0 |
| author | OpenIntentOS |
| tags | ["sms","notification","china"] |
| requires | {"bins":["python3"],"env":["TENCENT_SECRET_ID","TENCENT_SECRET_KEY","TENCENT_SMS_APP_ID","TENCENT_SMS_SIGN_NAME"]} |
| tools | [{"name":"sms_send_tencent","description":"Send an SMS message via Tencent Cloud SMS","script":"./send.py","args":[{"name":"phone","type":"string","required":true,"description":"Phone number with country code, e.g. +8613800138000"},{"name":"template_id","type":"string","required":true,"description":"Tencent Cloud SMS template ID"},{"name":"params","type":"string","required":false,"description":"Comma-separated template params, e.g. 123456,5"}]}] |
Sends SMS messages using the Tencent Cloud (腾讯云) SMS API with TC3-HMAC-SHA256 request signing.
Set the following environment variables:
| Variable | Description |
|---|---|
TENCENT_SECRET_ID | Tencent Cloud API secret ID |
TENCENT_SECRET_KEY | Tencent Cloud API secret key |
TENCENT_SMS_APP_ID | SMS application ID (SDKAppId) |
TENCENT_SMS_SIGN_NAME | Approved SMS signature name |
python3 send.py "+8613800138000" "123456" "987654,5"
Success:
{"success": true, "phone": "+8613800138000", "message_id": "2021-..."}
Failure:
{"success": false, "error": "InvalidParameterValue.TemplateNotExist"}