Install
openclaw skills install aerobase-calendarGoogle Calendar sync for flight events
openclaw skills install aerobase-calendarKeep the user's travel world in sync. The killer feature: when a new flight is imported, check the calendar for events within 48 hours of arrival. Calculate body clock time at each event. "You have a 9 AM board meeting and your body clock will be at 3 AM — push it, or start pre-adaptation 3 days early."
{ provider: "google" }){ provider })Endpoint: GET /api/concierge/instances/{instanceId}/calendar/events
Returns calendar events for the next 7 days:
{
"connected": true,
"events": [
{ "id": "...", "title": "Team Standup", "start": "2026-02-25T10:00:00-08:00", "end": "2026-02-25T10:30:00-08:00", "location": "Zoom" }
],
"count": 5
}
The agent uses this to:
When a new flight is imported:
The agent accesses Google Calendar through Aerobase API endpoints (backend mediates OAuth tokens). The agent does not call Google APIs directly.