Calendar Reminders (gcalcli + CalDAV)
by @adorostkar
Provides a config-driven wrapper around gcalcli plus optional CalDAV integration to generate JSON reminder plans for scheduling one-shot OpenClaw reminders.
clawhub install calendar-remindersπ About This Skill
name: calendar-reminders description: Calendar reminders pipeline: config-driven wrapper around gcalcli (Google Calendar) plus optional CalDAV source via vdirsyncer+khal, and a reminder planner that outputs a JSON plan for one-shot OpenClaw reminders.
gcalcli calendar wrapper + reminder planner
This skill provides:
scripts/calendar β wrapper around gcalcliscripts/calendar_reminder_plan.py β produces a JSON plan for reminder schedulingreferences/openclaw-calendar.example.json β example config formatConfig
Copy the example config to a private location and edit it:
~/.config/openclaw/calendar.jsonOPENCLAW_CALENDAR_CONFIG=/path/to/calendar.jsonRequirements
python3, gcalclivdirsyncer, khalSecurity notes (why ClawHub may flag this)
This skill *invokes external binaries* and is config-driven.
gcalcli/khal using subprocess.check_output([...], shell=False) (argument-list form; safe against shell injection from event titles).vdirsyncerSyncCommand, make sure you run it as an argv list (subprocess.run(cmd_list, shell=False)), not as a shell string.gcalcliPath / khalBin to trusted binaries (prefer absolute paths). Donβt run untrusted paths.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:
Wiring a daily reminder scheduler (OpenClaw)
Create a daily cron job (e.g. 00:05 local time) that:
1) If CalDAV is enabled in config, runs the configured vdirsyncer sync command.
2) Runs scripts/calendar_reminder_plan.py to get a JSON plan.
3) For each planned reminder, creates a one-shot OpenClaw systemEvent reminder at reminderAtUtc.
4) 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.)
βοΈ Configuration
Copy the example config to a private location and edit it:
~/.config/openclaw/calendar.jsonOPENCLAW_CALENDAR_CONFIG=/path/to/calendar.json