From gws
Reschedules Google Calendar events to new times using GWS CLI commands and notifies all attendees. Requires 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`
Reschedules Google Calendar events to new times using GWS CLI commands and notifies all attendees. Requires gws-calendar skill.
Manages Google Calendar events via Python CLI scripts: lists calendars/events, gets details, creates/updates/deletes with standalone OAuth. For Workspace accounts without MCP server.
Queries Google Calendar free/busy status for multiple users to find overlapping free slots for meetings. Uses gws CLI to query and create events.
Share bugs, ideas, or general feedback.
PREREQUISITE: Load the following skills to execute this recipe:
gws-calendar
Move a Google Calendar event to a new time and automatically notify all attendees.
gws calendar +agendagws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'gws calendar events patch --params '{"calendarId": "primary", "eventId": "EVENT_ID", "sendUpdates": "all"}' --json '{"start": {"dateTime": "2025-01-22T14:00:00", "timeZone": "America/New_York"}, "end": {"dateTime": "2025-01-22T15:00:00", "timeZone": "America/New_York"}}'