apple-reminders

Manage Apple Reminders from the terminal using the remindctl command-line tool.

1|Updated Jun 1, 2026
One-click install
npx skills add https://github.com/Araara7/hermes-skills --skill apple-reminders-araara7
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: apple-reminders
Source: https://github.com/Araara7/hermes-skills/tree/main/apple/apple-reminders
Command: npx skills add https://github.com/Araara7/hermes-skills --skill apple-reminders-araara7

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing Apple Reminders normally requires opening the Reminders app on macOS, which breaks terminal-based workflows. This Skill lets you create, list, complete, and delete reminders directly from the command line, with tasks syncing across all Apple devices via iCloud. ## Core Features & Use Cases - Create and manage reminders: Add reminders with titles, due dates, and list assignments using remindctl commands. - View and filter tasks: Show today's, tomorrow's, overdue, or date-specific reminders, with JSON, TSV, or count-only output formats. - List management: Create, view, and delete Reminders lists to organize personal and work tasks. - Use Case: You tell your agent "remind me to call mom tomorrow" and it runs remindctl add --title "Call mom" --due tomorrow, so the task appears on your iPhone via iCloud sync. ## Quick Start Ask the agent to add a reminder with a due date, for example: create an Apple Reminder to buy milk tomorrow in my Personal list.

Frequently Asked Questions about apple-reminders

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I add an Apple Reminder from the command line?▼

Use remindctl with the add command, for example: remindctl add --title "Call mom" --list Personal --due tomorrow. It accepts date formats like today, tomorrow, YYYY-MM-DD, and ISO 8601.

How do I install remindctl on macOS?▼

Install remindctl via Homebrew with brew install steipete/tap/remindctl. After installation, grant Reminders permission when prompted, or run remindctl authorize to request access.

Does remindctl sync reminders to iPhone and iPad?▼

Yes, reminders created with remindctl sync across all Apple devices through iCloud, since it writes directly to Apple Reminders. Tasks appear on iPhone and iPad automatically.

When should I use Apple Reminders instead of a cronjob alert?▼

Use Apple Reminders when you want a personal to-do that syncs to your iOS devices. Use a cronjob or agent alert when you want the agent itself to notify or act at a scheduled time.

Can I get reminder output as JSON for scripting?▼

Yes, pass the --json flag to commands like remindctl today --json for machine-readable output. Other formats include --plain for TSV and --quiet for counts only.