From gws
Batch adds attendees to an existing Google Calendar event using GWS CLI patch and sends notifications. Prerequisite: gws-calendar skill.
npx claudepluginhub wadewarren/gws-claude-pluginThis skill uses the workspace's default tool permissions.
> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`
Batch adds attendees to an existing Google Calendar event using GWS CLI patch and sends notifications. Prerequisite: gws-calendar skill.
Reads event data from Google Sheets spreadsheets and creates Google Calendar entries for each row using gws CLI tools. Useful for automating bulk event imports from sheets.
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.
Share bugs, ideas, or general feedback.
PREREQUISITE: Load the following skills to execute this recipe:
gws-calendar
Add a list of attendees to an existing Google Calendar event and send notifications.
gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'gws calendar events patch --params '{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}' --json '{"attendees": [{"email": "alice@company.com"}, {"email": "bob@company.com"}, {"email": "carol@company.com"}]}'gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'