PluginBench
Skill
Pass
Audit score 90

apple-reminders

steipete/clawdis

Manage Apple Reminders from the terminal with remindctl.

What is apple-reminders?

Control Apple Reminders directly from the command line on macOS. List, create, edit, complete, and delete reminders and lists that sync across your Apple devices. Use when you need personal to-dos with due dates that appear in the Reminders app on iPhone, iPad, and Mac.

  • List reminders for today, tomorrow, this week, specific dates, or all reminders
  • Create reminders with titles, due dates/times, and assign to specific lists
  • Complete or delete reminders by ID
  • Manage reminder lists (create, view, delete)
  • Output reminders in JSON, plain text, or quiet format for scripting

How to install apple-reminders

npx skills add https://github.com/steipete/clawdis --skill apple-reminders
Prerequisites
  • macOS (darwin) only
  • Install remindctl via Homebrew: brew install steipete/tap/remindctl
  • Grant Reminders app permission when prompted
  • Run remindctl authorize if access is not granted
Claude Code
Cursor
Windsurf
Cline

How to use apple-reminders

  1. 1.Install remindctl via Homebrew using the provided formula
  2. 2.Run remindctl status to verify installation
  3. 3.Use remindctl today to view today's reminders
  4. 4.Create a reminder with remindctl add --title "Task name" --due tomorrow
  5. 5.View all reminders with remindctl all or filter by date/list as needed
  6. 6.Complete reminders with remindctl complete <ID> or delete with remindctl delete <ID>

Use cases

Good for
  • Create a personal to-do with a due date that syncs to your iPhone
  • View overdue reminders and catch up on tasks
  • Organize reminders into lists like Work, Personal, or Projects
  • Generate a JSON list of this week's reminders for processing
  • Bulk complete multiple reminders by ID
Who it's for
  • macOS users who use Apple Reminders
  • People who want CLI access to their Reminders app
  • Anyone syncing tasks across iPhone, iPad, and Mac

apple-reminders FAQ

Can I use this to schedule OpenClaw alerts or tasks?

No. Use the cron tool with systemEvent instead. This skill is only for Apple Reminders, which sync to your devices. Use it when the user explicitly mentions the Reminders app or wants tasks on their phone.

What date formats does remindctl accept?

Relative dates (today, tomorrow, yesterday), YYYY-MM-DD, YYYY-MM-DD HH:mm, and ISO 8601 format (2026-01-04T12:34:56Z).

Can I output reminders as JSON for scripting?

Yes. Use remindctl today --json (or any other filter) to get JSON output suitable for further processing.

Is this available on Windows or Linux?

No, remindctl is macOS-only because it integrates with Apple's native Reminders app.

How do I distinguish between a Reminders request and an OpenClaw alert request?

If the user says 'remind me' but means an OpenClaw alert, ask: 'Do you want this in Apple Reminders (syncs to your phone) or as an alert here?' Use this skill only for Apple Reminders.

Full instructions (SKILL.md)

Source of truth, from steipete/clawdis.


name: apple-reminders description: "List, add, edit, complete, or delete Apple Reminders and reminder lists via remindctl." homepage: https://github.com/steipete/remindctl metadata: { "openclaw": { "emoji": "⏰", "os": ["darwin"], "requires": { "bins": ["remindctl"] }, "install": [ { "id": "brew", "kind": "brew", "formula": "steipete/tap/remindctl", "bins": ["remindctl"], "label": "Install remindctl via Homebrew", }, ], }, }

Apple Reminders CLI (remindctl)

Use remindctl to manage Apple Reminders directly from the terminal.

When to Use

Use when:

  • User explicitly mentions "reminder" or "Reminders app"
  • Creating personal to-dos with due dates that sync to iOS
  • Managing Apple Reminders lists
  • User wants tasks to appear in their iPhone/iPad Reminders app

When NOT to Use

Do not use when:

  • Scheduling OpenClaw tasks or alerts -> use cron tool with systemEvent instead
  • Calendar events or appointments -> use Apple Calendar
  • Project/work task management -> use Notion, GitHub Issues, or task queue
  • One-time notifications -> use cron tool for timed alerts
  • User says "remind me" but means an OpenClaw alert -> clarify first

Setup

  • Install: brew install steipete/tap/remindctl
  • macOS-only; grant Reminders permission when prompted
  • Check status: remindctl status
  • Request access: remindctl authorize

Common Commands

View Reminders

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

Manage Lists

remindctl list               # List all lists
remindctl list Work          # Show specific list
remindctl list Projects --create    # Create list
remindctl list Work --delete        # Delete list

Create Reminders

remindctl add "Buy milk"
remindctl add --title "Call mom" --list Personal --due tomorrow
remindctl add --title "Meeting prep" --due "2026-02-15 09:00"

Complete/Delete

remindctl complete 1 2 3     # Complete by ID
remindctl delete 4A83 --force  # Delete by ID

Output Formats

remindctl today --json       # JSON for scripting
remindctl today --plain      # TSV format
remindctl today --quiet      # Counts only

Date Formats

Accepted by --due and date filters:

  • today, tomorrow, yesterday
  • YYYY-MM-DD
  • YYYY-MM-DD HH:mm
  • ISO 8601 (2026-01-04T12:34:56Z)

Example: Clarifying User Intent

User: "Remind me to check on the deploy in 2 hours"

Ask: "Do you want this in Apple Reminders (syncs to your phone) or as an OpenClaw alert (I'll message you here)?"

  • Apple Reminders -> use this skill
  • OpenClaw alert -> use cron tool with systemEvent