gcalcli calendar wrapper + reminder planner
This skill provides:
scripts/calendar— wrapper aroundgcalcliscripts/calendar_reminder_plan.py— produces a JSON plan for reminder schedulingreferences/openclaw-calendar.example.json— example config format
Config
Copy the example config to a private location and edit it:
- Default path:
~/.config/openclaw/calendar.json - Override with env:
OPENCLAW_CALENDAR_CONFIG=/path/to/calendar.json
Requirements
- Required:
python3,gcalcli - Optional (for CalDAV/iCloud):
vdirsyncer,khal
Auth (Google)
gcalcli requires OAuth. On headless servers you may need SSH port-forwarding.
The wrapper uses --noauth_local_server to print instructions.
Reminder planning
The planner outputs a JSON blob describing reminders to schedule. A separate cron job (or an agent turn) can read it and create one-shot OpenClaw reminders.
Defaults:
- Ignore birthdays.
- Timed events are considered important.
- All-day events only trigger reminders if their title matches configured keywords.
Wiring a daily reminder scheduler (OpenClaw)
Create a daily cron job (e.g. 00:05 local time) that:
- If CalDAV is enabled in config, runs the configured
vdirsyncersync command. - Runs
scripts/calendar_reminder_plan.pyto get a JSON plan. - For each planned reminder, creates a one-shot OpenClaw
systemEventreminder atreminderAtUtc. - Writes a small state file so you don’t schedule duplicates.
(Our skill intentionally provides the wrapper + planner; scheduling is left to your cron/agent wiring.)