Calendrier macOS et Rappels

VérifiéSûr

Gérez les événements du Calendrier Apple et les Rappels sur macOS. Outils CLI pour créer, consulter, mettre à jour ou supprimer des éléments.

Spar Skills Guide Bot
ProductiviteIntermédiaire
1024/07/2026
Claude CodeCursorWindsurf
#macos#calendar#reminders#eventkit#cli

Recommandé pour

Notre avis

Gère les événements du calendrier Apple et les rappels via des scripts CLI auto-suffisants utilisant EventKit.

Points forts

  • Interaction native avec les calendriers et rappels macOS sans GUI
  • Automatisation des tâches de planification et de suivi
  • Prise en charge de la création, mise à jour, suppression et recherche

Limites

  • Nécessite macOS et l'outil uv
  • Nécessite une autorisation manuelle via les permissions système
  • Ne fonctionne pas sur Windows ou Linux
Quand l'utiliser

Lorsque vous devez créer, modifier ou interroger des événements de calendrier ou des rappels sur macOS de manière programmatique.

Quand l'éviter

Si vous êtes sur un autre système d'exploitation ou si vous préférez une interface graphique pour la gestion de calendrier.

Analyse de sécurité

Sûr
Score qualité90/100

The skill only runs local Python scripts (calctl.py, remindctl.py) via uv to manage macOS Calendar and Reminders. It uses allowed-tools Bash and Read, and the scripts require explicit user-granted permissions through macOS. No dangerous operations such as arbitrary code execution, data exfiltration, or system modifications are present.

Aucun point d'attention détecté

Exemples

Create a calendar event
Create a calendar event on my Work calendar titled 'Team standup' tomorrow from 9:00 to 9:30 AM.
List today's reminders
Show me all my reminders for today.
Search calendar events
Search my calendar for events containing 'review' next week.

name: macos-calendar-reminders-skill description: Manage Apple Calendar events and Apple Reminders on macOS via calctl.py and remindctl.py — self-contained EventKit CLI scripts. Use when the user wants to create, query, update, or delete calendar events or reminders on macOS. compatibility: macOS only (darwin). Requires uv (brew install uv). Python 3.12+ auto-resolved by uv. metadata: author: openclaw version: "3.0.0" allowed-tools: Bash(uv:*) Read

macOS Calendar & Reminders

Two CLI tools for Apple Calendar (calctl.py) and Apple Reminders (remindctl.py). Dependencies auto-installed by uv.

Full reference: calctl.md · remindctl.md · authorization.md


Routing

| Scenario | Tool | |----------|------| | Time blocks (meetings, appointments, events) | calctl — Calendar | | Tasks / deadlines / todos | remindctl — Reminder |

Use list to discover available calendars and reminder lists before creating items.


Quick Reference

# Calendar
uv run scripts/calctl.py list
uv run scripts/calctl.py get --calendar all --start 2026-03-16 --end 2026-03-22
uv run scripts/calctl.py create --calendar Work --title "Meeting" --start 2026-03-20T14:00:00 --end 2026-03-20T15:00:00
uv run scripts/calctl.py search --query "review"
uv run scripts/calctl.py update --id "<event_id>" --start 2026-03-20T15:00:00 --end 2026-03-20T16:00:00
uv run scripts/calctl.py delete --calendar Work --id "<event_id>"

# Reminders
uv run scripts/remindctl.py list
uv run scripts/remindctl.py get today
uv run scripts/remindctl.py get week --list Work
uv run scripts/remindctl.py create --title "Submit report" --list Work --due 2026-03-20T23:59:00 --priority high
uv run scripts/remindctl.py search --query "assignment"
uv run scripts/remindctl.py update --id "<id>" --due 2026-03-21T23:59:00
uv run scripts/remindctl.py complete --id "<id>"
uv run scripts/remindctl.py delete --id "<id>" --confirm

Authorization

On first use, run status --authorize to trigger the macOS permission prompt:

uv run scripts/calctl.py status --authorize
uv run scripts/remindctl.py status --authorize

If permission is denied or the prompt doesn't appear, read authorization.md to guide the user through manual setup. Do not retry in a loop.

Skills similaires