skillfed

recipe-reschedule-meeting

This recipe automates moving Google Calendar events to different times while sending updates to all attendees. It chains calendar lookup, event retrieval, and time-change operations into a single workflow.

recipe-reschedule-meeting moves a Google Calendar event to a new time and notifies all attendees automatically.

AI-generated summary based on this skill's SKILL.md

30,031 1,753 Apache-2.0 updated by googleworkspace

Install

googleworkspace/cli/recipe-reschedule-meeting · repository language: Rust

CLI (skillfed)coming soon
git clone https://github.com/googleworkspace/cli
cp -r cli/skills/recipe-reschedule-meeting ~/.claude/skills/recipe-reschedule-meeting

Frequently asked questions

AI-generated answers based on this skill's SKILL.md and metadata

How do I reschedule a Google Calendar event?

recipe-reschedule-meeting automates the process by looking up your calendar, retrieving the event you want to move, and updating it to the new time in a single workflow. You specify the event and new time slot, and the recipe handles the calendar operations for you.

Does recipe-reschedule-meeting notify attendees when I move a meeting?

Yes. recipe-reschedule-meeting is designed to move calendar events and automatically notify all attendees of the time change. When you reschedule, update notifications are sent to everyone invited to the meeting.

Can I reschedule meeting and notify attendees in one step?

recipe-reschedule-meeting does exactly that. It chains calendar lookup, event retrieval, and time-change operations into a single workflow, so rescheduling and sending attendee notifications happen together without manual follow-up steps.

What happens when I change event time in Google Calendar with this recipe?

recipe-reschedule-meeting updates the meeting time and automatically sends change notifications to all attendees. The recipe streamlines the entire rescheduling workflow so you don't have to manually notify people of the new time.

Is recipe-reschedule-meeting available under an open license?

Yes. recipe-reschedule-meeting is distributed under the Apache-2.0 license, making it freely available for use, modification, and distribution under those terms.

SKILL.md

rendered from the published skill — quoted content, verbatim

Reschedule a Google Calendar Meeting

> 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.

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"}}'

Read as markdown · JSON record · Browse the source repository

File tree — 1 file
skills/recipe-reschedule-meeting/SKILL.md

Related skills

Tags

meeting-rescheduling calendar-automation attendee-notifications time-slot-management batch-updates event-coordination scheduling-workflow google-workspace-integration