Send SMS text messages via TelTel (teltel.io) using the REST API (api.teltel.io). Includes bulk send, delivery report, and bulk sms.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install teltel-send-sms-text-message或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install teltel-send-sms-text-message⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/teltel-send-sms-text-message/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: teltel-send-sms-text-message description: Send SMS text messages via TelTel (teltel.io) using the REST API (api.teltel.io). Includes bulk send, delivery report, and bulk sms. metadata: {"openclaw":{"emoji":"💬","homepage":"https://www.teltel.io/","primaryEnv":"TELTEL_API_KEY"}} ---
Use the bundled Node scripts to send SMS via the TelTel API.
1) Register at https://www.teltel.io/ 2) Add funds / credit to your TelTel account 3) From the TelTel SMS section, send a test SMS first to confirm your sender name/phone is accepted/verified 4) In TelTel Settings, find your API key 5) Enjoy
This skill declares TELTEL_API_KEY as its primary env var, so the OpenClaw Skills UI can show an API key input for it.
Under the hood it maps to:
skills.entries.teltel-send-sms-text-message.apiKey → TELTEL_API_KEYSet a default sender name/number (used when you do not pass --from):
skills.entries.teltel-send-sms-text-message.env.TELTEL_SMS_FROMTELTEL_API_KEY (required)TELTEL_SMS_FROM (optional) — default sender name/numberTELTEL_BASE_URL (optional) — defaults to https://api.teltel.io/v2node {baseDir}/scripts/send_sms.js \
--to "+3712xxxxxxx" \
--message "Hello from TelTel" \
--from "37167881855"
If you omit --from, the script uses TELTEL_SMS_FROM.
Dry-run (prints URL + payload, does not send):
node {baseDir}/scripts/send_sms.js \
--dry-run \
--to "+37111111111" \
--message "test" \
--from "37167881855"
node {baseDir}/scripts/send_sms_bulk.js \
--from "37167881855" \
--to "+3712...,+1..." \
--message "Hello everyone"
The --to list can be comma/newline/semicolon separated.
https://api.teltel.io/v2POST /sms/text - JSON body: { "data": { "from": "...", "to": "+...", "message": "...", "callback": "https://..."? } }
POST /sms/bulk/text - JSON body: { "data": { "from": "...", "to": ["+...", "+..."], "message": "...", "callback": "https://..."? } }
Notes:
to must be in international format.安装 Send SMS text and bulk messages via TelTel.io API 后,可以对 AI 说这些话来触发它
Send a Slack message to the #engineering channel about the deployment
Formats and sends the message with relevant context, tagging the right people
Summarize all unread messages in my inbox from today
Reads messages across connected channels and returns a prioritized summary
Draft a reply to this customer complaint and send it for review
Writes an empathetic, professional response and routes it to the approval queue
将技能文件夹放到 ~/.claude/skills/teltel-send-sms-text-message/ 目录(个人级,所有项目可用),或 .claude/skills/teltel-send-sms-text-message/(项目级)。重启 AI 客户端后,用 /teltel-send-sms-text-message 主动调用,或让 AI 根据上下文自动发现并使用。
Send SMS text and bulk messages via TelTel.io API 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Send SMS text and bulk messages via TelTel.io API 可免费安装使用。请查阅仓库了解许可证信息。
Send SMS text messages via TelTel (teltel.io) using the REST API (api.teltel.io). Includes bulk send, delivery report, and bulk sms.
Send SMS text and bulk messages via TelTel.io API 属于「Communication」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。