Apple Reminders
通过 remindctl CLI 管理 Apple Reminders(列表、添加、完成、删除)。
技能元数据
| 来源 | 捆绑(默认安装) |
| 路径 | skills/apple/apple-reminders |
| 版本 | 1.0.0 |
| 作者 | Hermes Agent |
| 许可证 | 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
何时使用
- 用户提到“reminder”或“Reminders app”
- 创建带有截止日期并同步到 iOS 的个人待办事项
- 管理 Apple Reminders 列表
- 用户希望任务出现在其 iPhone/iPad 上
何时不使用
- 调度代理提醒 → 改用 cronjob 工具
- 日历事件 → 使用 Apple Calendar 或 Google Calendar
- 项目任务管理 → 使用 GitHub Issues、Notion 等
- 如果用户说“remind me”但意指代理提醒 → 先澄清
快速参考
查看提醒
remindctl # Today's reminders
remindctl today # Today
remindctl tomorrow # Tomorrow
remindctl week # This week
remindctl overdue # Past due
remindctl all # Everything
remindctl 2026-01-04 # Specific date
管理列表
remindctl list # List all lists
remindctl list Work # Show specific list
remindctl list Projects --create # Create list
remindctl list Work --delete # Delete list
创建提醒
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 # Complete by ID
remindctl delete 4A83 --force # Delete by ID
输出格式
remindctl today --json # JSON for scripting
remindctl today --plain # TSV format
remindctl today --quiet # Counts only
日期格式
--due 和日期过滤器接受的格式:
today,tomorrow,yesterdayYYYY-MM-DDYYYY-MM-DD HH:mm- ISO 8601 (
2026-01-04T12:34:56Z)
规则
- 当用户说“remind me”时,澄清:Apple Reminders(同步到手机)还是代理 cronjob 提醒
- 在创建之前始终确认提醒内容和截止日期
- 使用
--json进行程序化解析