-
Notifications
You must be signed in to change notification settings - Fork 32
Open
Description
Description
remindctl add reports success (✓) but the reminder does not actually persist in Apple Reminders. This appears to be similar to the authorization issue described in #5.
Steps to Reproduce
- Run
remindctl addwith valid parameters (list name, title, due date) - Command returns success indicator (
✓) - Run
remindctl list <list-name>— the reminder does not appear - Check Apple Reminders app — the reminder is not present
Expected Behavior
The reminder should be created and visible in both remindctl list output and the Apple Reminders app.
Actual Behavior
Command returns success but the reminder is not created. No error message is shown.
Workaround
Using AppleScript directly works reliably:
tell application "Reminders"
tell list "ListName"
make new reminder with properties {name:"...", due date:date "..."}
end tell
end tellEnvironment
- remindctl v0.1.1 (Homebrew)
- macOS Sonoma 14.x
- Apple Reminders with iCloud sync enabled
Notes
This may share a root cause with #5 (authorization). The list command works correctly, suggesting read access is fine but write access silently fails.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels