Productivity

recipe-reschedule-meeting

googleworkspace/cli · updated Apr 8, 2026

$npx skills add https://github.com/googleworkspace/cli --skill recipe-reschedule-meeting
summary

Reschedule Google Calendar events and automatically notify all attendees of time changes.

  • Requires the gws-calendar skill to function
  • Uses a three-step workflow: find the event via agenda, retrieve full event details, then patch the event with new start and end times
  • Automatically sends update notifications to all attendees through the sendUpdates: \"all\" parameter
  • Supports timezone-aware scheduling with configurable date, time, and timezone fields
skill.md

1d:["$","div",null,{"className":"prose prose-invert max-w-none prose-headings:font-semibold prose-headings:tracking-tight prose-h1:text-4xl prose-h1:mb-2 prose-h2:text-2xl prose-h2:mb-2 prose-h3:text-lg prose-h3:mb-2 prose-p:text-muted-foreground prose-li:text-muted-foreground prose-code:bg-muted prose-code:text-foreground prose-code:px-1 prose-code:py-0.5 prose-code:rounded-sm prose-code:text-sm prose-code:before:content-none prose-code:after:content-none prose-pre:bg-muted prose-pre:text-foreground prose-pre:border prose-pre:border-border prose-pre:rounded-md [&_table]:!border-[color:var(--border)] [&_th]:!border-[color:var(--border)] [&_td]:!border-[color:var(--border)]","dangerouslySetInnerHTML":{"__html":"<h1>Reschedule a Google Calendar Meeting</h1>\n<blockquote>\n<p><strong>PREREQUISITE:</strong> Load the following skills to execute this recipe: <code>gws-calendar</code></p>\n</blockquote>\n<p>Move a Google Calendar event to a new time and automatically notify all attendees.</p>\n<h2>Steps</h2>\n<ol>\n<li>Find the event: <code>gws calendar +agenda</code></li>\n<li>Get event details: <code>gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'</code></li>\n<li>Update the time: <code>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"}}'</code></li>\n</ol>"}}]