From gws
Creates recurring Google Calendar events with attendees using gws CLI. Includes JSON params for summary, times, RRULE recurrence, and verification via agenda.
How this skill is triggered — by the user, by Claude, or both
Slash command
/gws:recipe-schedule-recurring-eventThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`
PREREQUISITE: Load the following skills to execute this recipe:
gws-calendar
Create a recurring Google Calendar event with attendees.
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]"}]}'gws calendar +agenda --days 14 --format tablenpx claudepluginhub wadewarren/gws-claude-pluginReviews Google Calendar week via agenda and free/busy queries, identifies time gaps, and adds events like deep work blocks to fill them. Useful for automated weekly scheduling.
Lists, creates, inspects, and updates Google Calendar events via local Python scripts with standalone OAuth authentication. No MCP server needed.
Manages Google Calendar events via Apps Script API: query today/week/upcoming/range events for availability checks, create events with titles, times, guests, descriptions, and auto-invites.