From google-workspace-cli
Delete a Google Calendar event and send a cancellation email via Gmail.
npx claudepluginhub pleaseai/claude-code-plugins --plugin google-workspaceThis skill uses the workspace's default tool permissions.
> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`, `gws-gmail`
Reschedules Google Calendar events to new times using GWS CLI commands and notifies all attendees. Requires gws-calendar skill.
Manages Google Calendar events via gcalcli CLI: list upcoming events, create new ones with duration, delete by search term. Includes guardrails for attendee confirmation and bulk operation safety.
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,gws-gmail
Delete a Google Calendar event and send a cancellation email via Gmail.
[!CAUTION] Deleting with sendUpdates sends cancellation emails to all attendees.
gws calendar +agenda --format json and locate the event IDgws calendar events delete --params '{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}'gws gmail +send --to attendees --subject 'Meeting Cancelled: [Title]' --body 'Apologies, this meeting has been cancelled.'