Apple Reminders
通过 remindctl 使用 Apple Reminders:添加、列出、完成。
技能元数据
| 来源 | 捆绑(默认安装) |
| 路径 | skills/apple/apple-reminders |
| 版本 | 1.0.0 |
| 作者 | Hermes 智能体 |
| 许可证 | MIT |
| 平台 | macOS |
| 标签 | Reminders, tasks, todo, macOS, Apple |
参考:完整 SKILL.md
信息
以下是 Hermes 在触发此技能时加载的完整技能定义。这是智能体在技能激活时看到的指令。
Apple Reminders
使用 remindctl 直接从终端管理 Apple Reminders。任务通过 iCloud 在所有 Apple 设备间同步。
先决条件
- 安装了 Reminders.app 的 macOS
- 安装:
brew install steipete/tap/remindctl - 出现提示时授予 Reminders 权限
- 检查:
remindctl status/ 请求:remindctl authorize
何时使用
- 用户提到“提醒”或“Reminders 应用”
- 创建带有截止日期的个人待办事项,并同步到 iOS
- 管理 Apple Reminders 列表
- 用户希望任务出现在其 iPhone/iPad 上
何时不应使用
- 安排智能体警报 → 改用 cronjob 工具
- 日历事件 → 使用 Apple Calendar 或 Google Calendar
- 项目任务管理 → 使用 GitHub Issues、Notion 等
- 如果用户说“提醒我”但指的是智能体警报 → 请先澄清
快速参考
查看提醒
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 Reminders(同步到手机)与智能体 cronjob 警报
- 创建前始终确认提醒内容和截止日期
- 使用
--json进行程序化解析