欢迎回来

登录 EAKE AI,继续您的智能之旅

忘记密码?
还没有账号?立即注册

Apple 提醒事项

2026-05-20 · Skills中心

Apple 提醒事项

通过 remindctl 管理 Apple 提醒事项:添加、列表、完成提醒

Apple Reminders

使用 remindctl 从终端直接管理 Apple 提醒事项。任务通过 iCloud 在所有 Apple 设备间同步。

前置条件

  • macOS 搭配 Reminders.app
  • 安装:brew install steipete/tap/remindctl
  • 出现提示时授予提醒事项权限
  • 检查:remindctl status / 申请:remindctl authorize
  • 使用场景

  • 用户提到「提醒事项」或「Reminders app」
  • 创建带截止日期并同步到 iOS 的个人待办
  • 管理 Apple 提醒事项列表
  • 用户希望任务显示在 iPhone/iPad 上
  • 不适用场景

  • 安排代理提醒 → 改用 cronjob 工具
  • 日历事件 → 使用 Apple 日历或 Google 日历
  • 项目任务管理 → 使用 GitHub Issues、Notion 等
  • 如果用户说「提醒我」但指的是代理提醒 → 先澄清
  • 快速参考

    查看提醒事项

    
    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 和日期过滤器接受的格式:

  • todaytomorrowyesterday
  • YYYY-MM-DD
  • YYYY-MM-DD HH:mm
  • ISO 8601(2026-01-04T12:34:56Z
  • 规则

  • 当用户说「提醒我」时,澄清:Apple 提醒事项(同步到手机)还是代理的 cronjob 提醒
  • 创建前始终确认提醒内容与截止日期
  • 程序化解析时使用 --json
  • 评论区

    发表评论