Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Byted Sms Sender

v1.0.0

火山引擎短信服务管理工具。在需要使用云通信能力,包括发送短信,查询消息组,模板信息,发送详情,状态以及整体发送统计时,可以使用这个能力。

0· 87·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for volcengine-skills/byted-sms-sender.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Byted Sms Sender" (volcengine-skills/byted-sms-sender) from ClawHub.
Skill page: https://clawhub.ai/volcengine-skills/byted-sms-sender
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install byted-sms-sender

ClawHub CLI

Package manager switcher

npx clawhub@latest install byted-sms-sender
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
high confidence
Purpose & Capability
The name, description, SKILL.md and scripts/volc_sms.py consistently implement a Volcano Engine (Byted) SMS management client (send, list templates/signatures/logs/stats). Functionality implemented matches the stated purpose.
!
Instruction Scope
SKILL.md and references/setup-guide.md instruct the agent/user to check and read environment variables and the file /root/.openclaw/.env and to run the bundled script. Pointing to a specific root path for credentials is a scope assumption that may access system-level configuration; the skill also relies on ARK_SKILL_API_KEY and ARK_SKILL_API_BASE even though those were not declared in the registry metadata.
Install Mechanism
This is instruction-only with an included Python script; there is no install spec, no downloads, and nothing is written to disk by an installer. Risk from install mechanism is low.
!
Credentials
The code requires two environment values (ARK_SKILL_API_KEY and ARK_SKILL_API_BASE) to contact an API — those are appropriate for an API client. However, the skill metadata lists no required env vars or primary credential, which is an inconsistency. Also ARK_SKILL_API_BASE is an arbitrary endpoint: if it points to a non-official host it could be used to exfiltrate data or proxy requests.
Persistence & Privilege
always:false and the skill does not request permanent or cross-skill configuration changes. It does not modify other skills or system configuration.
What to consider before installing
This skill appears to be a legitimate SMS client, but there are two important issues to consider before installing: 1) Missing declared credentials: The registry metadata does not list any required env vars, but both SKILL.md and the script require ARK_SKILL_API_KEY and ARK_SKILL_API_BASE. Ask the publisher to update the metadata to declare these required credentials so you can assess them before enabling the skill. 2) Arbitrary API base: The API base (ARK_SKILL_API_BASE) is user-supplied and may point to any HTTP host. Verify that this value points to the official Volcano Engine endpoint (or another trusted endpoint). If the API base is untrusted, the skill could send your token and request payloads to an attacker-controlled server. Treat the API key like a secret: ensure least privilege, rotate it if exposed, and don't give broad account permissions. Additional practical checks: - Inspect the included script (scripts/volc_sms.py) — it uses requests.post and straightforward JSON; there is no obfuscation. - Confirm the environment file path (/root/.openclaw/.env) is acceptable in your environment; prefer a non-root, clearly scoped credential storage if possible. - Be mindful of potential SMS costs and abuse if the key can send messages; limit token scope or use a dedicated account for this skill. If you cannot confirm the API base and token provenance or if the publisher cannot update the metadata to declare required env vars, treat the skill as risky and avoid granting it secrets or enabling it for autonomous use.

Like a lobster shell, security has layers — review code before you run it.

latestvk971jkjy8hfxkf3h4cwevbwftn83wfr6
87downloads
0stars
1versions
Updated 4w ago
v1.0.0
MIT-0

Byted SMS Sender

火山引擎短信服务 API,版本 2026-01-01

何时使用

当用户有以下需求时,使用本 skill:

发送短信场景:

  • 需要发送验证码短信
  • 需要发送通知类短信
  • 需要发送营销类短信
  • 用户说"发短信""发送验证码""发通知"时

查询场景:

  • 需要查询可用的消息组(子账号)
  • 需要查询已审核通过的短信签名
  • 需要查询已审核通过的短信模板
  • 需要查询短信发送记录
  • 需要查询发送统计(成功率等)

使用前检查

检查是否已配置以下凭证:

  • ARK_SKILL_API_KEY - API 密钥
  • ARK_SKILL_API_BASE - API 基础地址

这些凭证由 ArkClaw 预先配置在终端环境中,配置文件位置: /root/.openclaw/.env

检查方式:

echo $ARK_SKILL_API_KEY
echo $ARK_SKILL_API_BASE

如果缺少凭证:

  1. 检查配置文件 /root/.openclaw/.env 是否存在
  2. 如果仍然找不到,请联系 oncall 获取帮助

6个接口说明

1. send_sms - 发送短信

场景: 用户需要发送验证码、通知、营销短信

使用方式:

python3 scripts/volc_sms.py send_sms \
  --sub-account "消息组ID" \
  --signature "签名" \
  --template-id "模板ID" \
  --mobiles "手机号" \
  --template-param '{"code":"123456"}'

参数说明:

  • --sub-account: 消息组ID(必填),从 list_sub_account 获取
  • --signature: 短信签名(必填),从 list_signature 获取
  • --template-id: 模板ID(必填),从 list_sms_template 获取
  • --mobiles: 手机号(必填),多个用逗号分隔
  • --template-param: 模板参数(可选),JSON格式

2. list_sub_account - 查询消息组

场景: 需要知道可以用哪个消息组发送短信

使用方式:

python3 scripts/volc_sms.py list_sub_account

参数说明:

  • --sub-account-name: 可选,按名称模糊搜索

3. list_signature - 查询签名

场景: 需要知道可以用哪个签名,或者查询签名是否审核通过

使用方式:

python3 scripts/volc_sms.py list_signature --signature "火山引擎"

参数说明:

  • --signature: 可选,按签名模糊搜索
  • --sub-accounts: 可选,按子账号过滤
  • --page: 页码,默认1
  • --page-size: 每页数量,默认20

4. list_sms_template - 查询模板

场景: 需要知道可以用哪个模板,或者查询模板参数

使用方式:

python3 scripts/volc_sms.py list_sms_template --signatures "火山引擎"

参数说明:

  • --template-id: 可选,按模板ID模糊搜索
  • --signatures: 可选,按签名过滤
  • --sub-accounts: 可选,按子账号过滤
  • --page: 页码,默认1
  • --page-size: 每页数量,默认20

5. list_sms_send_log - 查询发送记录

场景: 需要查看某条短信的发送状态,或批量查询发送历史

使用方式:

python3 scripts/volc_sms.py list_sms_send_log \
  --sub-account "消息组ID" \
  --from-time 1773113285 \
  --to-time 1773213285

参数说明:

  • --sub-account: 必填,消息组ID
  • --from-time: 开始时间戳(秒)
  • --to-time: 结束时间戳(秒)
  • --mobile: 可选,按手机号过滤
  • --template-id: 可选,按模板ID过滤
  • --signature: 可选,按签名过滤
  • --message-id: 可选,按消息ID精确查询
  • --page: 页码,默认1
  • --page-size: 每页数量,默认100

6. list_total_send_count_stat - 查询发送统计

场景: 需要查看发送成功率、接收成功率等统计信息

使用方式:

python3 scripts/volc_sms.py list_total_send_count_stat \
  --start-time 1773113285 \
  --end-time 1773213285

参数说明:

  • --start-time: 必填,开始时间戳(秒)
  • --end-time: 必填,结束时间戳(秒)
  • --sub-account: 可选,按消息组过滤
  • --channel-type: 可选,通道类型
  • --signature: 可选,按签名过滤
  • --template-id: 可选,按模板ID过滤

返回字段:

  • TotalSendCount: 总发送数
  • TotalSendSuccessCount: 发送成功数
  • TotalSendSuccessRate: 发送成功率
  • TotalReceiptSuccessCount: 接收成功数
  • TotalReceiptSuccessRate: 接收成功率

典型使用流程

第一次发送短信

  1. 查询可用的消息组
    python3 scripts/volc_sms.py list_sub_account
    
  2. 查询可用的签名
    python3 scripts/volc_sms.py list_signature
    
  3. 查询可用的模板
    python3 scripts/volc_sms.py list_sms_template --signatures "火山引擎"
    
  4. 发送短信
    python3 scripts/volc_sms.py send_sms \
      --sub-account "xxxx" \
      --signature "xxx" \
      --template-id "ST_xxxx" \
      --mobiles "188xxxxxxx8" \
      --template-param '{"code":"888888"}'
    

查询发送状态

python3 scripts/volc_sms.py list_sms_send_log \
  --sub-account "77da1acf" \
  --from-time 1773113285 \
  --to-time 1773213285

常见错误码

  • RE:0001: 账号短信服务未开通
  • RE:0003: 子账号不存在(消息组ID错误)
  • RE:0004: 签名错误(签名不存在或未审核通过)
  • RE:0005: 模板错误(模板不存在或未审核通过)
  • RE:0006: 手机号格式错误
  • RE:0010: 账号欠费
  • ZJ10200: 请求参数错误

注意事项

  1. 签名和模板: 必须使用已审核通过的签名和模板
  2. 手机号格式:
    • 国内短信: 11位手机号或 +86开头
    • 国际短信: 必须包含国际区号,符合 E.164 标准
  3. 批量限制: 单次最多200个手机号
  4. 签名子账号匹配: 签名和消息组需要匹配,可从 list_signature 的 SubAccounts 字段确认
  5. 模板签名匹配: 模板和签名需要匹配,可从 list_sms_template 的 Signature 字段确认

故障排查

  • 缺少凭证: 检查 /root/.openclaw/.env 文件,如仍找不到请联系 oncall
  • 发送失败: 先用 list_sub_account、list_signature、list_sms_template 确认参数正确
  • 鉴权失败: 检查自己配置的 AK/SK 是否开通正确
  • 权限错误: 检查凭证是否正确,如问题持续请联系 oncall
  • 欠费错误: 请联系 oncall 处理

Comments

Loading comments...