From sundial-org-awesome-openclaw-skills-4
Lists, creates, updates, and deletes Google Calendar events via the REST API. Use when you need programmatic access to your calendar.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:google-calendarThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill provides a thin wrapper around the Google Calendar REST API. It lets you:
This skill provides a thin wrapper around the Google Calendar REST API. It lets you:
The skill is implemented in Python (scripts/google_calendar.py). It expects the following environment variables to be set (you can store them securely with openclaw secret set):
GOOGLE_CLIENT_ID=…
GOOGLE_CLIENT_SECRET=…
GOOGLE_REFRESH_TOKEN=… # obtained after OAuth consent
GOOGLE_CALENDAR_ID=primary # or the ID of a specific calendar
The first time you run the skill you may need to perform an OAuth flow to obtain a refresh token – see the Setup section below.
google-calendar list [--from <ISO> --to <ISO> --max <N>]
google-calendar add --title <title> [--start <ISO> --end <ISO>]
[--desc <description> --location <loc> --attendees <email1,email2>]
google-calendar update --event-id <id> [--title <title> ... other fields]
google-calendar delete --event-id <id>
All commands return a JSON payload printed to stdout. Errors are printed to stderr and cause a non‑zero exit code.
client_id and client_secret.GOOGLE_CLIENT_ID=… GOOGLE_CLIENT_SECRET=… python3 -m google_calendar.auth
It will open a browser (or print a URL you can open elsewhere) and ask you to grant access. After you approve, copy the refresh_token it prints.openclaw secret set GOOGLE_CLIENT_ID <value>
openclaw secret set GOOGLE_CLIENT_SECRET <value>
openclaw secret set GOOGLE_REFRESH_TOKEN <value>
openclaw secret set GOOGLE_CALENDAR_ID primary # optional
pip install --user google-auth google-auth-oauthlib google-api-python-client
The script loads the credentials from the environment, refreshes the access token using the refresh token, builds a service = build('calendar', 'v3', credentials=creds), and then calls the appropriate API method.
Note: This skill does not require a GUI; it works entirely via HTTP calls, so it is suitable for headless servers.
npx claudepluginhub sundial-org/awesome-openclaw-skillsLightweight Google Calendar integration for listing calendars, viewing/creating/updating/deleting events, and finding free time. Uses standalone OAuth authentication.
Automates Google Calendar event management with standalone OAuth authentication. Lists, creates, updates, and deletes events without an MCP server. Requires Google Workspace accounts.
Reads and manages Google Calendar events, agenda, free-busy, and invitations using the Calendar v3 REST API. Handles scheduling, rescheduling, and cancellations.