Install
openclaw skills install jpeng-calendar-syncCalendar synchronization skill. Sync events between Google Calendar, Outlook, and local storage. Supports CRUD operations and reminders.
openclaw skills install jpeng-calendar-syncSynchronize calendar events across Google Calendar, Outlook, and local storage.
# Google Calendar
export GOOGLE_CLIENT_ID="xxx"
export GOOGLE_CLIENT_SECRET="xxx"
export GOOGLE_REDIRECT_URI="http://localhost:8080/callback"
# Microsoft Outlook
export OUTLOOK_CLIENT_ID="xxx"
export OUTLOOK_CLIENT_SECRET="xxx"
python3 scripts/calendar.py list --days 7
python3 scripts/calendar.py add \
--title "Team Meeting" \
--start "2024-01-15T10:00:00" \
--end "2024-01-15T11:00:00" \
--description "Weekly sync" \
--reminder 15
python3 scripts/calendar.py delete --event-id "xxx"
python3 scripts/calendar.py available \
--date "2024-01-15" \
--duration 60
{
"success": true,
"event_id": "evt_xxx",
"calendar_link": "https://calendar.google.com/..."
}