
Recipe Reschedule Meeting
- 24.9k installs
- 30.2k repo stars
- Updated August 1, 2026
- googleworkspace/cli
Reschedule-meeting is a Google Workspace CLI recipe that moves calendar events to new times and notifies attendees.
About
Reschedule a Google Calendar event to a new time and automatically notify all attendees. The skill finds the calendar event, retrieves its details, and updates the meeting time with the sendUpdates flag to alert participants. Developers use this to automate meeting management workflows and keep team calendars synchronized.
- Automatically notifies attendees when calendar events move
- Updates event times and timezones in one operation
- Works within the Google Workspace CLI ecosystem
Recipe Reschedule Meeting by the numbers
- 24,902 all-time installs (skills.sh)
- +356 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #31 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
- Security screen: LOW risk (skills.sh audit)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
recipe-reschedule-meeting capabilities & compatibility
- Capabilities
- scheduling · notifications · automation
- Works with
- google drive
- Use cases
- project management
What recipe-reschedule-meeting says it does
Move a Google Calendar event to a new time and automatically notify all attendees.
npx skills add https://github.com/googleworkspace/cli --skill recipe-reschedule-meetingAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 24.9k |
|---|---|
| repo stars | ★ 30.2k |
| Security audit | 3 / 3 scanners passed |
| Last updated | August 1, 2026 |
| Repository | googleworkspace/cli ↗ |
How do you reschedule a Google Calendar event from the terminal?
Developers automate calendar event management and meeting coordination in team workflows.
Who is it for?
Automating meeting rescheduling in team coordination workflows
Skip if: Developers setting up Calendar API OAuth for the first time or those who only need to create new events without modifying existing ones.
When should I use this skill?
A developer asks to move, postpone, or reschedule a Google Calendar meeting and notify attendees using gws.
What you get
Updated Calendar event with revised start and end times and attendee notifications sent.
- updated calendar event
- attendee notification dispatch
By the numbers
- Recipe metadata version 0.22.5 in googleworkspace/cli
- Documented as a 3-step gws calendar command sequence
Files
Reschedule a Google Calendar Meeting
PREREQUISITE: Load the following skills to execute this recipe: gws-calendarMove a Google Calendar event to a new time and automatically notify all attendees.
Steps
1. Find the event: gws calendar +agenda 2. Get event details: gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}' 3. Update the time: 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"}}'
Related skills
FAQ
Which gws skill must load before recipe-reschedule-meeting?
recipe-reschedule-meeting requires the gws-calendar utility skill and the gws binary; the recipe README lists gws-calendar as a prerequisite before running agenda, get, and update commands.
How does recipe-reschedule-meeting find the event to move?
recipe-reschedule-meeting starts with gws calendar +agenda, then runs gws calendar events get with calendarId and eventId JSON params before patching the event start and end times.
Is Recipe Reschedule Meeting safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.