โ† All skills
Tencent SkillHub ยท Developer Tools

Apple Reminder

Natural language reminders that create actual Apple Reminders.app entries (macOS-native)

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Natural language reminders that create actual Apple Reminders.app entries (macOS-native)

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
complete-reminder.sh, create-reminder.sh, delete-reminder.sh, edit-reminder-message.sh, edit-reminder-time.sh, list-reminders.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 23 sections Open source page

Apple Remind Me (macOS Native)

Create, manage, and organize Apple Reminders using natural language. Works with Reminders.app natively - syncs to iPhone, iPad, Apple Watch.

Quick Reference

Want to...CommandExampleCreate remindercreate-reminder.sh "msg" "when"create-reminder.sh "Call mom" "tomorrow at 2pm"List reminderslist-reminders.sh [filter]list-reminders.sh todayComplete remindercomplete-reminder.sh IDcomplete-reminder.sh XXXX-XXXXDelete reminderdelete-reminder.sh IDdelete-reminder.sh XXXX-XXXXEdit messageedit-reminder-message.sh ID "msg"edit-reminder-message.sh XXXX "New text"Edit timeedit-reminder-time.sh ID "when"edit-reminder-time.sh XXXX "next friday"

1. Create Reminder

Create a new reminder with natural language time parsing. Usage: ./create-reminder.sh "message" "when" Examples: ./create-reminder.sh "Pay bills" "later today" ./create-reminder.sh "Call dentist" "tomorrow at 3pm" ./create-reminder.sh "Check email" "in 2 hours" ./create-reminder.sh "Team meeting" "next monday at 10am"

2. List Reminders

Display all incomplete reminders with IDs, titles, due dates, and lists. Usage: ./list-reminders.sh Output Format: โณ ID: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX Title: Reminder text Due: 2026-01-27 14:00 List: Reminders

3. Complete Reminder

Mark a reminder as completed (it will move to completed list in Reminders.app). Usage: ./complete-reminder.sh "REMINDER-ID" Example: ./complete-reminder.sh "CDCBCB94-1215-494E-9F12-471AFEF25C09"

4. Delete Reminder

Permanently delete a reminder. Usage: ./delete-reminder.sh "REMINDER-ID" Example: ./delete-reminder.sh "7C403BC5-6016-410A-810D-9A0F924682F9"

5. Edit Reminder Message

Update the text/title of an existing reminder. Usage: ./edit-reminder-message.sh "REMINDER-ID" "new message" Example: ./edit-reminder-message.sh "CDCBCB94-1215-494E-9F12-471AFEF25C09" "Updated reminder text"

6. Edit Reminder Time

Reschedule a reminder to a new time using natural language. Usage: ./edit-reminder-time.sh "REMINDER-ID" "new time" Examples: ./edit-reminder-time.sh "CDCBCB94-1215-494E-9F12-471AFEF25C09" "tomorrow at 2pm" ./edit-reminder-time.sh "CDCBCB94-1215-494E-9F12-471AFEF25C09" "in 3 hours" ./edit-reminder-time.sh "CDCBCB94-1215-494E-9F12-471AFEF25C09" "next friday"

Relative Times

Format: in [number] [unit] in 5 minutes โ†’ 5 minutes from now in 2 hours โ†’ 2 hours from now in 3 days โ†’ 3 days from now at current time

Time of Day Shortcuts

later today / later / this afternoon โ†’ Today at 17:00 tonight โ†’ Today at 20:00 tomorrow โ†’ Tomorrow at 09:00

Tomorrow with Specific Time

Format: tomorrow at [time] tomorrow at 3pm โ†’ Tomorrow at 15:00 tomorrow at 10:30am โ†’ Tomorrow at 10:30 tomorrow at 8pm โ†’ Tomorrow at 20:00

Day of Week

Format: next [weekday] (lowercase required) next monday โ†’ Next Monday at 09:00 next friday โ†’ Next Friday at 09:00 next sunday โ†’ Next Sunday at 09:00 Note: Day names must be lowercase (monday, tuesday, etc.)

ISO Format (fallback)

2026-01-27 14:00 โ†’ Exact date and time

Creating Reminders

When user says: "Remind me to X at/in Y" ./create-reminder.sh "X" "Y"

Listing Reminders

When user asks: "What are my reminders?" or "Show my reminders" ./list-reminders.sh

Completing Reminders

When user says: "Mark [reminder] as done" or "Complete [reminder]" List reminders to find the ID Use the ID to complete: ./complete-reminder.sh "REMINDER-ID"

Editing Reminders

When user says: "Change [reminder] to say X" or "Reschedule [reminder] to Y" List reminders to find the ID Edit message or time: ./edit-reminder-message.sh "REMINDER-ID" "new message" ./edit-reminder-time.sh "REMINDER-ID" "new time"

Deleting Reminders

When user says: "Delete [reminder]" or "Remove [reminder]" List reminders to find the ID Delete: ./delete-reminder.sh "REMINDER-ID"

Complete Workflow: Find and Complete a Reminder

# 1. List all reminders ./list-reminders.sh | grep "Pay bills" # 2. Get the ID from output # Output shows: ID: CDCBCB94-1215-494E-9F12-471AFEF25C09 # 3. Mark as complete ./complete-reminder.sh "CDCBCB94-1215-494E-9F12-471AFEF25C09"

Complete Workflow: Reschedule a Reminder

# 1. List reminders and find the one to reschedule ./list-reminders.sh | grep "Team meeting" # 2. Reschedule to new time ./edit-reminder-time.sh "REMINDER-ID" "next friday at 2pm"

Technical Details

Backend: Uses remindctl command-line tool (macOS native) Date Parsing: BSD date utility (macOS compatible) Time Format: ISO 8601 timestamps for remindctl List Filtering: Shows only incomplete reminders by default Sync: All changes sync immediately to iCloud and all devices

Requirements

macOS (darwin) remindctl (installed at /usr/local/bin/remindctl) date (BSD version, macOS default) python3 (for JSON parsing in list-reminders.sh) Apple Reminders.app

Limitations

Day of week parsing requires lowercase (e.g., "monday" not "Monday") "Next [weekday]" adds 7 days (doesn't calculate exact next occurrence) No support for recurring reminders No support for custom reminder lists (uses default "Reminders" list) No location-based reminders

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
6 Scripts
  • complete-reminder.sh Scripts
  • create-reminder.sh Scripts
  • delete-reminder.sh Scripts
  • edit-reminder-message.sh Scripts
  • edit-reminder-time.sh Scripts
  • list-reminders.sh Scripts