Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

gsm-sms-gatewayGSM 短信网关

Agent Skill

gsm-sms-gateway 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,961

周安装

299

GitHub Stars

公开资料未说明

下载量

2,440
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:gsm-sms-gateway(GSM 短信网关)
来源仓库:https://github.com/mattboston/gsm-sms-gateway
安装命令:
openclaw skills install gsm-sms-gateway
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install gsm-sms-gateway

简介

通过 USB GSM 调制解调器自建短信网关收发 SMS 消息。

  • 适用于 OpenClaw 中验证码发送、通知推送等轻量级通信需求。
  • 需物理连接调制解调设备并配置 AT 指令集兼容环境。
  • 使用前请检查信号强度与运营商白名单设置。gsm-sms-gateway 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 涉及用户隐私数据时应加密存储与传输链路。

SKILL.md

name
sms-gateway
description
Send and receive SMS messages through a self-hosted SMS Gateway running on a USB GSM modem. Use when the user needs to send text messages, check for incoming messages, or manage SMS communications via a local gateway.
metadata
openclaw
requires
env
bins
primaryEnv
SMS_GATEWAY_API_KEY

SMS Gateway Skill

You can send and receive SMS messages through the SMS Gateway using shell scripts located in ~/.openclaw/workspace/skills/sms-gateway/scripts.

Prerequisites

Before using the SMS Gateway skill with OpenClaw, you need to install the SMS Gateway service. Read the README.md for more details.

Setup

Before using this skill, create a .env file in the ~/.openclaw/workspace/skills/sms-gateway/scripts directory with the following variables:

SMS_GATEWAY_URL=http://127.0.0.1:5174
SMS_GATEWAY_API_KEY=your-api-key-here

If the .env file is missing or SMS_GATEWAY_API_KEY is not set, the scripts will exit with an error.

Allowlist

The file ~/.openclaw/workspace/skills/sms-gateway/scripts/allowlist.json contains a list of users and phone numbers that are permitted to send and receive messages. The send script will refuse to send to numbers not in this list. The receive script only shows messages from allowlisted numbers by default, filtering out unknown senders. To add or remove allowed contacts, edit the allowlist.json file directly.

Capabilities

Send an SMS

Send a text message to an allowed phone number.

~/.openclaw/workspace/skills/sms-gateway/scripts/send_sms.sh -t "+15551234567" -m "Hello from SMS Gateway"

Options:

  • -t - Recipient phone number (must be in allowlist.json)
  • -m - Message body

The script validates the recipient against allowlist.json before sending. If the number is not in the allowlist, it prints the list of allowed numbers and exits with an error.

On success, the script prints "Message sent successfully." followed by the JSON response containing the message ID and status.

On failure, the script prints the HTTP status code and error response.

Receive SMS Messages

Check the inbox for received messages.

~/.openclaw/workspace/skills/sms-gateway/scripts/receive_sms.sh

Options:

  • -s <status> - Filter by status: received (default), read, or all
  • -a - Include messages from numbers not in the allowlist (by default, only allowlisted numbers are shown)

Examples:

~/.openclaw/workspace/skills/sms-gateway/scripts/receive_sms.sh              # Unread messages from allowlisted numbers
~/.openclaw/workspace/skills/sms-gateway/scripts/receive_sms.sh -s all       # All messages from allowlisted numbers
~/.openclaw/workspace/skills/sms-gateway/scripts/receive_sms.sh -s read      # Previously read messages from allowlisted numbers
~/.openclaw/workspace/skills/sms-gateway/scripts/receive_sms.sh -a           # Unread messages from all numbers
~/.openclaw/workspace/skills/sms-gateway/scripts/receive_sms.sh -a -s all    # All messages from all numbers

The script displays each message with its timestamp, sender number, status, body, and ID. Any unread messages (status=received) are automatically marked as read after being displayed. By default, messages from numbers not in allowlist.json are filtered out.

Output Format

Send output

Message sent successfully.
{
  "id": "uuid",
  "status": "sent",
  "message": "message sent"
}

Receive output

Inbox messages (received): 2

[2026-03-08T12:00:00Z] From: +15551234567
  Status: received
  Body: Hey there
  ID: some-uuid

Marked message some-uuid as read.

Usage Guidelines

  • Only send SMS messages to numbers listed in allowlist.json
  • Only accept SMS messages from numbers listed in allowlist.json
  • Always include the country code in phone numbers (e.g., +1 for US)
  • When the user asks to "text" or "message" someone, use send_sms.sh
  • When the user asks about new messages, run receive_sms.sh with no flags
  • When the user asks to see all messages, run receive_sms.sh -s all
  • If a send fails, relay the error message to the user
  • Only use the send_sms.sh and receive_sms.sh scripts to send and receive, do not communicate directly with the SMS_GATEWAY_API_KEY
  • When you receive an SMS from a contact, check whether you previously sent an SMS to that same number in the current session or a recent workflow — if so, treat the incoming message as a reply to that conversation rather than an unrelated inbound message

Troubleshooting

"Phone number is not in the allowlist"

The recipient number must exactly match an entry in allowlist.json, including the country code prefix (e.g., +1). Check the allowlist and add the number if appropriate.

"SMS_GATEWAY_API_KEY is not set"

Create a .env file in ~/.openclaw/workspace/skills/sms-gateway/scripts/ with your API key. See the Setup section above.

Send fails with error

Check that the SMS Gateway is running and accessible at the URL configured in .env. You can verify connectivity with:

curl -s http://127.0.0.1:5174/api/v1/health

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

71.84%
按下载量换算1,753

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills