Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Create a recurring Google Calendar event with attendees using RRULE recurrence rules.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-schedule-recurring-event3description: "Create a recurring Google Calendar event with attendees."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "scheduling"9requires:10bins:11- gws12skills:13- gws-calendar14---1516# Schedule a Recurring Meeting1718> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`1920Create a recurring Google Calendar event with attendees.2122## Steps23241. Create recurring event: `gws calendar events insert --params '{"calendarId": "primary"}' --json '{"summary": "Weekly Standup", "start": {"dateTime": "2024-03-18T09:00:00", "timeZone": "America/New_York"}, "end": {"dateTime": "2024-03-18T09:30:00", "timeZone": "America/New_York"}, "recurrence": ["RRULE:FREQ=WEEKLY;BYDAY=MO"], "attendees": [{"email": "[email protected]"}]}'`252. Verify it was created: `gws calendar +agenda --days 14 --format table`2627