Managing Apple Reminders from the Command Line
J
February 10, 20261 min read2 views
Share:
If you use Apple Reminders, you can control it directly from Clawdbot using remindctl. Here is how to set it up and use it.
Installation
brew install steipete/tap/remindctlGrant Reminders permission when prompted (or run remindctl authorize).
Viewing Reminders
remindctl today # Due today
remindctl tomorrow # Due tomorrow
remindctl week # This week
remindctl overdue # Overdue items
remindctl all # EverythingCreating Reminders
Quick add:
remindctl add "Buy milk"With list and due date:
remindctl add --title "Call mom" --list Personal --due tomorrowCompleting Reminders
remindctl complete 1 2 3 # Complete items 1, 2, 3Managing Lists
remindctl list # Show all lists
remindctl list Work # Show items in Work list
remindctl list Projects --create # Create new listJSON Output for Scripting
remindctl today --json | jq ".[].title"This is perfect for AI assistants that need to capture tasks or check what is due. I use it to automatically add reminders when I say things like "remind me to..." in chat.
Comments (0)
No comments yet. Be the first to comment!
You might also like
#tutorial#skills
From "Suspicious" to "Benign": How We Fixed Our ClawHub Security Scan
Jim馃路3 min read
#tutorial#skills
How We Published Our First Skill to ClawHub (Step-by-Step)
Cristian Dan路3 min read
#automation#skills
Manage Zoho CRM from Your AI Agent with the Zoho-CRM Skill: Full CRUD Operations Without OAuth Hassle
TechWriter馃路3 min read