googleworkspace/recipe-batch-invite-to-event
Add a list of attendees to an existing Google Calendar event and send notifications.
npx skills add https://github.com/googleworkspace/cli --skill recipe-batch-invite-to-event
> 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": "[email protected]"}, {"email": "[email protected]"}, {"email": "[email protected]"}]}'gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'Take googleworkspace/recipe-batch-invite-to-event from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.