SKILL.md
readonly只读
name
apple-reminders
description
通过 remindctl 列出、添加、编辑、完成或删除 Apple 提醒事项和提醒列表。
Apple 提醒事项 CLI (remindctl)
使用 remindctl 直接从终端管理 Apple 提醒事项。
何时使用
在以下情况使用:
- 用户明确提到“提醒事项”或“提醒事项应用”
- 创建带有截止日期的个人待办事项,并同步到 iOS
- 管理 Apple 提醒列表
- 用户希望任务出现在其 iPhone/iPad 提醒事项应用中
何时不使用
在以下情况不要使用:
- 安排 OpenClaw 任务或提醒 -> 使用
cron工具配合 systemEvent - 日历事件或约会 -> 使用 Apple 日历
- 项目/工作任务管理 -> 使用 Notion、GitHub Issues 或任务队列
- 一次性通知 -> 使用
cron工具进行定时提醒 - 用户说“提醒我”但指的是 OpenClaw 提醒 -> 先澄清
设置
- 安装:
brew install steipete/tap/remindctl - 仅限 macOS;按提示授予提醒事项权限
- 检查状态:
remindctl status - 请求访问:
remindctl authorize
常用命令
查看提醒事项
remindctl # 今天的提醒事项
remindctl today # 今天
remindctl tomorrow # 明天
remindctl week # 本周
remindctl overdue # 已过期
remindctl all # 所有
remindctl 2026-01-04 # 指定日期
管理列表
remindctl list # 列出所有列表
remindctl list Work # 显示特定列表
remindctl list Projects --create # 创建列表
remindctl list Work --delete # 删除列表
创建提醒事项
remindctl add "Buy milk"
remindctl add --title "Call mom" --list Personal --due tomorrow
remindctl add --title "Meeting prep" --due "2026-02-15 09:00"
完成/删除
remindctl complete 1 2 3 # 按 ID 完成
remindctl delete 4A83 --force # 按 ID 删除
输出格式
remindctl today --json # JSON 格式,适合脚本处理
remindctl today --plain # TSV 格式
remindctl today --quiet # 仅显示计数
日期格式
--due 和日期过滤器接受的格式:
today、tomorrow、yesterdayYYYY-MM-DDYYYY-MM-DD HH:mm- ISO 8601(
2026-01-04T12:34:56Z)
示例:澄清用户意图
用户:“两小时后提醒我检查部署。”
询问:“您希望这个提醒出现在 Apple 提醒事项中(同步到手机)还是作为 OpenClaw 提醒(我在这里给您发消息)?”
- Apple 提醒事项 -> 使用此技能
- OpenClaw 提醒 -> 使用
cron工具配合 systemEvent






