用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CoderWanFeng/python-office --skill send-message-by-time命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | send_message_by_time |
| description | 通过微信在指定时间向联系人发送定时消息。当用户提到定时发微信、微信定时消息、预约发微信时使用。 |
在指定时间发送消息给指定联系人
通过微信自动化,在指定时间向联系人发送一条消息(定时消息)。
office/skills/wechat/send_message_by_time/
from skills.wechat import send_message_by_time
send_message_by_time(
who='文件传输助手',
message='该起床了',
time='08:00:00'
)
| 参数 | 类型 | 必填 | 默认值 | 说明 |
|---|---|---|---|---|
who | str | 是 | - | 接收消息的联系人名称 |
message | str | 是 | - | 要发送的消息内容 |
time | str | 是 | - | 发送消息的预定时间 |
None
from skills.wechat import send_message_by_time
send_message_by_time(who='文件传输助手', message='早安', time='08:00:00')
office.api.wechat.send_message_by_time