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- 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
How to use apple-reminders
- 1.Install remindctl via Homebrew using the provided formula
- 2.Run remindctl status to verify installation
- 3.Use remindctl today to view today's reminders
- 4.Create a reminder with remindctl add --title "Task name" --due tomorrow
- 5.View all reminders with remindctl all or filter by date/list as needed
- 6.Complete reminders with remindctl complete <ID> or delete with remindctl delete <ID>
Use cases
- 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
- 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
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.
Relative dates (today, tomorrow, yesterday), YYYY-MM-DD, YYYY-MM-DD HH:mm, and ISO 8601 format (2026-01-04T12:34:56Z).
Yes. Use remindctl today --json (or any other filter) to get JSON output suitable for further processing.
No, remindctl is macOS-only because it integrates with Apple's native Reminders app.
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
crontool 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
crontool 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,yesterdayYYYY-MM-DDYYYY-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
crontool with systemEvent
Related skills
More from steipete/clawdis and the wider catalog.

bear-notes
Create, search, and manage Bear notes via grizzly CLI on macOS.

blogwatcher
Monitor blogs and RSS/Atom feeds for updates via CLI.

blucli
Control Bluesound/NAD players via CLI for discovery, playback, grouping, and volume.

bluebubbles
Send and manage iMessages via BlueBubbles, including attachments, tapbacks, edits, replies, and groups.

camsnap
Capture frames and clips from RTSP/ONVIF cameras via command line.

clawhub
Search, install, and manage AI agent skills from ClawHub registry.