← Back to Skills Marketplace
ivangdavila

Apple Calendar (MacOS)

by Iván · GitHub ↗ · v1.0.0
darwin ⚠ suspicious
872
Downloads
0
Stars
7
Active Installs
1
Versions
Install in OpenClaw
/install apple-calendar-macos
Description
Use local CLI to manage Apple, Google, iCloud, Outlook, CalDAV, and other calendars synced in macOS Calendar, without API keys or OAuth.
README (SKILL.md)

Setup

On first use, follow setup.md to establish local operating context and confirmation preferences before any calendar write.

When to Use

User wants to manage events from the macOS Calendar stack where Google, iCloud, Exchange, and CalDAV accounts are already synced locally. Agent handles lookup, create, update, delete, conflict checks, and post-write verification without provider OAuth setup.

Requirements

  • macOS with Calendar app access enabled for terminal tools.
  • At least one working command path: apple-calendar-cli, icalBuddy, shortcuts, or osascript.
  • User confirmation before destructive operations.
  • Provider accounts should already be connected in Calendar.app; this skill does not run provider OAuth.

Architecture

Memory lives in ~/apple-calendar-macos/. See memory-template.md for structure.

~/apple-calendar-macos/
├── memory.md                  # Status, defaults, and confirmation behavior
├── command-paths.md           # Detected CLI path and fallback status
├── timezone-defaults.md       # Preferred timezone and date style
└── safety-log.md              # Deletions, bulk edits, and rollback notes

Quick Reference

Topic File
Setup and first-run behavior setup.md
Memory structure memory-template.md
Command path matrix command-paths.md
Safety checklist before writes safety-checklist.md
Calendar operation patterns operation-patterns.md
Troubleshooting and recovery troubleshooting.md

Data Storage

All skill files are stored in ~/apple-calendar-macos/. Before creating or changing local files, describe the planned write and ask for confirmation.

Core Rules

1. Treat Calendar.app as the Unified Calendar Source

  • Assume provider sync already happens inside Calendar.app and operate on that local unified view.
  • Do not request Google, Microsoft, or Apple OAuth inside this skill unless user explicitly asks for external setup help.

2. Detect Command Path Before Any Calendar Action

  • Probe available tools in strict order: apple-calendar-cli, then icalBuddy, then shortcuts, then osascript.
  • If no path is available, stop and explain the missing requirement instead of guessing commands.

3. Use Deterministic Time Inputs and Calendar Scopes

  • Normalize all user time inputs to explicit timezone and start/end boundaries before running commands.
  • Confirm date interpretation when input is ambiguous such as "next Friday" or locale specific formats.

4. Read First, Then Write, Then Verify

  • For create, update, or delete operations, run a bounded pre-read in the target time window.
  • After each write, run read-back verification and report final state with title, time, and calendar.

5. Confirm Destructive or Broad Changes

  • Always require explicit confirmation for delete, move across calendars, and multi-event edits.
  • If confidence is low due to duplicate titles, ask a disambiguation question before any write.

6. Keep Recurrence and All-Day Semantics Explicit

  • Confirm recurrence rule, timezone behavior, and all-day interpretation before writing recurring events.
  • Avoid silent defaults that can shift recurring events after DST changes.

7. Prioritize Minimal Exposure and Local-First Handling

  • Use only the fields required for the requested action.
  • Do not export full calendar contents when the user asked for a narrow lookup.
  • Do not send event data to third-party APIs from this skill.

Common Traps

  • Editing by title only when duplicates exist -> wrong event modified.
  • Writing recurring events without timezone confirmation -> drift after DST.
  • Deleting without pre-read snapshot -> difficult recovery.
  • Trusting one CLI path blindly -> brittle behavior across macOS setups.
  • Running broad searches by default -> noisy output and accidental edits.

Security & Privacy

Data that stays local:

  • Calendar operation context and defaults in ~/apple-calendar-macos/.
  • Event metadata used for requested operations.

Data that may leave your machine:

  • None by default. Commands target local macOS Calendar data already synced on the device.

This skill does NOT:

  • Request undeclared API keys.
  • Send calendar data to third-party APIs.
  • Execute destructive calendar writes without explicit confirmation.

Related Skills

Install with clawhub install \x3Cslug> if user confirms:

  • macos - macOS workflows and system command patterns.
  • events - event planning and structure patterns.
  • meetings - meeting prep and follow-up workflows.
  • schedule - broader scheduling and planning workflows.
  • remind - reminder design and deadline management patterns.

Feedback

  • If useful: clawhub star apple-calendar-macos
  • Stay updated: clawhub sync
Usage Guidance
This skill appears coherent with its purpose, but before installing or enabling it: 1) confirm which of the required CLIs you plan to use — especially `apple-calendar-cli` (verify its source and trustworthiness) — since the skill assumes those local tools exist but does not install them; 2) be prepared to grant your Terminal app Calendar access in macOS privacy settings so read/write operations work; 3) review the ~/apple-calendar-macos/ folder after first use — it will store operation context, safety logs, and snapshots that may include event details; 4) the skill explicitly says it will not send data to third‑party APIs, but if you later install or run an unknown third‑party CLI wrapper, that tool could change behavior, so only use CLIs you trust; 5) the agent will require explicit confirmation before destructive actions — pay attention to those prompts. If you want extra safety, avoid installing or enabling any non‑Apple CLIs and rely only on built‑in fallbacks (shortcuts/osascript/icalBuddy) or review the source of any third‑party binary before use.
Capability Analysis
Type: OpenClaw Skill Name: apple-calendar-macos Version: 1.0.0 The skill is designed to manage macOS Calendar using local command-line tools, including `osascript` and `shortcuts`. While the skill's documentation (SKILL.md, command-paths.md, safety-checklist.md) explicitly emphasizes strong safety measures like user confirmation, pre-read verification, and no data exfiltration, the reliance on `osascript` and `shortcuts` introduces a significant vulnerability. These tools provide broad system interaction capabilities on macOS, and an AI agent executing instructions from markdown files presents a potential prompt-injection attack surface that could lead to arbitrary command execution (RCE), even if the current instructions are benign. There is no evidence of intentional malicious behavior within the skill's content, but the inherent power of the execution paths makes it suspicious due to the RCE risk.
Capability Assessment
Purpose & Capability
Name/description (manage calendars synced into macOS Calendar without OAuth) match the declared needs: a set of local CLI/tool fallbacks and a local config path. Requiring access to Calendar.app and local command-line tools is coherent for this purpose.
Instruction Scope
SKILL.md instructs the agent to probe local binaries, read before writing, request confirmations, and store small local state under ~/apple-calendar-macos/. It does not direct reading of unrelated system files, requesting unrelated credentials, or sending data to third‑party endpoints (the doc explicitly forbids that).
Install Mechanism
This is instruction-only (no install spec), which is lower risk. However the skill favors a third‑party tool named `apple-calendar-cli` as preferred path; the skill does not provide an install source. Users should verify the provenance and trustworthiness of any third‑party CLI they choose to install.
Credentials
No secrets or external API credentials are requested. The only declared config access is to ~/apple-calendar-macos/, which will store operation context, safety logs, and snapshots that may contain event metadata — this is proportionate but sensitive. Users should be aware that local calendar data (event titles/times/notes) may be written to that folder.
Persistence & Privilege
The skill is not always-on and is user-invocable; it requests no elevated platform privileges beyond typical terminal access to Calendar.app. It does not modify other skills or system-wide agent settings.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install apple-calendar-macos
  3. After installation, invoke the skill by name or use /apple-calendar-macos
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release with unified macOS Calendar operations, deterministic command fallback, and safety-first write verification.
Metadata
Slug apple-calendar-macos
Version 1.0.0
License
All-time Installs 7
Active Installs 7
Total Versions 1
Frequently Asked Questions

What is Apple Calendar (MacOS)?

Use local CLI to manage Apple, Google, iCloud, Outlook, CalDAV, and other calendars synced in macOS Calendar, without API keys or OAuth. It is an AI Agent Skill for Claude Code / OpenClaw, with 872 downloads so far.

How do I install Apple Calendar (MacOS)?

Run "/install apple-calendar-macos" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Apple Calendar (MacOS) free?

Yes, Apple Calendar (MacOS) is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Apple Calendar (MacOS) support?

Apple Calendar (MacOS) is cross-platform and runs anywhere OpenClaw / Claude Code is available (darwin).

Who created Apple Calendar (MacOS)?

It is built and maintained by Iván (@ivangdavila); the current version is v1.0.0.

💬 Comments