← All skills
Tencent SkillHub · Productivity

Apple Calendar Manager

Manage Apple Calendar events via AppleScript. Create, edit, delete, and search calendar events.

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

Manage Apple Calendar events via AppleScript. Create, edit, delete, and search calendar events.

⬇ 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
SKILL.md, add_event_smart.sh, parse_relative_date.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.0

Documentation

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

Apple Calendar Manager

This skill allows OpenClaw to manage events in Apple Calendar using AppleScript.

Capabilities

Add new events to a specified calendar with smart date parsing (e.g., "today", "tomorrow", "next Monday"). (Future) Edit existing events. (Future) Delete events. (Future) Search for events.

Requirements

macOS Apple Calendar application must be accessible and authorized for automation. The calendar name must exist in the user's Calendar app.

Add an Event (Smart Date Parsing)

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"

Add an Event (Absolute Date Parsing)

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"

Implementation Details

Uses 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. Requires Apple Calendar.app to be running and accessible. macOS-only.

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Scripts1 Docs
  • SKILL.md Primary doc
  • add_event_smart.sh Scripts
  • parse_relative_date.sh Scripts