Home Assistant命令行控制
CLI管理智能家居设
该技能用于在指定时间或按周期创建提醒,支持一次性提醒、间隔重复提醒以及自定义cron规则,可通过iMessage、Discord等渠道推送消息。
安装步骤:
git clone https://github.com/openclaw/skills.gitcd skills/onionrings29/set-reminderpip install -r requirements.txtconfig.json,填写默认渠道、时区和通道信息基本用法:
# 20分钟后提醒
python3 scripts/set_reminder.py --at "+20m" --message "吃药"
# 每天上午9点提醒
python3 scripts/set_reminder.py --cron "0 9 * * *" --message "站会" --channel discord
# 每2小时提醒一次
python3 scripts/set_reminder.py --every "2h" --message "喝水"
见下方输入与输出表格。
| 项目 | 内容 |
|---|---|
| 输入 | 时间参数(ISO时间/相对时间/cron表达式)、提醒文本、目标渠道名、JSON配置文件 |
| 输出 | cron任务注册状态、到期触发的渠道消息 |
| 适用人群 | 个人效率管理用户、运维值班人员、团队协作者 |
| 不包含 | Web管理后台、多租户隔离、消息已读回执、历史记录存储 |
原始链接:https://github.com/openclaw/skills/tree/main/skills/onionrings29/set-reminder/SKILL.md
来源类型:GitHub仓库