Android sms
Skill yzp100911/skillgate-agent/cclaw/data/workspaces/coordinator/skills/android-sms
skillgate-agent - AI多模型网关与智能代理框架, 支持MiniMax/DeepSeek等主流模型, 集成MCP工具调用与技能系统。skillgate-agent - AI multi-model gateway & intelligent agent framework, supporting MiniMax/DeepSeek, MCP tools & skill system。
npx -y skills add yzp100911/skillgate-agent --skill android-smsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
当用户需要通过手机短信(SMS)发送消息时使用。例如:"给 xxx 发短信"、"发送短信到 xxx"、"用短信发给 xxx"、"帮我发条短信"、"send SMS to xxx"
SKILL.md
1.4 KB, as published. Nobody here has run it
Android SMS Skill
当用户要求发送短信时,回复中必须包含固定格式的触发行。
强制格式
回复文本中必须有如下格式的一行(单独一行,纯文本):
@你要发送的内容@手机号@SMS_go
例如用户说"给 18122859721 发短信说 找到了",则回复必须是:
好的,正在为你发送短信。
@找到了@18122859721@SMS_go
注意 @找到了@18122859721@SMS_go 这一行是必须有的,不能省略。
关键规则
- 提取手机号和短信内容后,必须构造一行
@内容@手机号@SMS_go放在回复中 - 这一行不能放在代码块、列表或引用中,必须是普通纯文本行
@SMS_go是固定的结尾,必须原样写出,不能改变- 即使只有一句话确认,确认语后面也必须加上触发行
示例
用户:给 18926879306 发短信说 你好 回复: 好的,正在为你发送短信。 @你好@18926879306@SMS_go
用户:给 13800138000 发短信说 明天见 回复: 好的,正在为你发送短信。 @明天见@13800138000@SMS_go
用户:给 18122859721 发短信说 找到了 回复: 好的,正在为你发送短信。 @找到了@18122859721@SMS_go