From google-workspace-cli
Batch adds a list of attendees to an existing Google Calendar event and sends notifications using GWS CLI commands. Requires gws-calendar skill for bulk invitations.
How this skill is triggered — by the user, by Claude, or both
Slash command
/google-workspace-cli:recipe-batch-invite-to-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
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"}'npx claudepluginhub pleaseai/claude-code-plugins --plugin google-workspaceBatch adds attendees to an existing Google Calendar event using GWS CLI patch and sends notifications. Prerequisite: gws-calendar skill.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.