Install
openclaw skills install apple-calendar-managerManage Apple Calendar events via AppleScript. Create, edit, delete, and search calendar events.
openclaw skills install apple-calendar-managerThis skill allows OpenClaw to manage events in Apple Calendar using AppleScript.
Use the add_event_smart.sh script to add events with relative dates or explicit dates.
Arguments:
calendar_name: The name of the calendar (e.g., "Рабочий", "Домашний").event_summary: The title of the event.event_description: (Optional) Description for the event.relative_start_date: Relative date for start (e.g., "today", "tomorrow", "day after tomorrow", "понедельник", "next monday") or absolute date (e.g., "2026-02-23").start_time: Start time (format HH:MM, e.g., "12:00").relative_end_date: Relative date for end (same as relative_start_date).end_time: End time (format HH:MM, e.g., "15:00").Example:
skills/apple-calendar-manager/add_event_smart.sh "Рабочий" "Чай с Настей" "Чай с Настей с 12 до 15" "tomorrow" "12:00" "tomorrow" "15:00"
Use the add_event.scpt script directly if you prefer to provide absolute dates in YYYYMMDDHHMMSS format.
Arguments:
calendar_name: The name of the calendar.event_summary: The title of the event.event_description: Description for the event.start_datetime_formatted: Start date and time in YYYYMMDDHHMMSS format.end_datetime_formatted: End date and time in YYYYMMDDHHMMSS format.Example:
osascript skills/apple-calendar-manager/add_event.scpt "Рабочий" "Тест скилла Календарь" "Тестовое событие" "20260225140000" "20260225150000"
osascript for direct Apple Calendar application control.parse_relative_date.sh script handles conversion of relative date strings to absolute date/time formats required by AppleScript.