# Recipe Reschedule Meeting > Move a Google Calendar event to a new time and automatically notify all attendees. Source: https://skillsagentes.com/skills/googleworkspace/cli/recipe-reschedule-meeting Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 21 tok installed, 242 tok once triggered, 242 tok with every bundled file Bundle: 1 file, 969 B Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill recipe-reschedule-meeting --agent claude-code ``` ## What it does - Busca un evento existente con `gws calendar +agenda` - Obtiene los detalles del evento con `gws calendar events get` - Actualiza la hora de inicio y fin del evento con `gws calendar events patch` - Notifica automáticamente a todos los asistentes usando `sendUpdates: all` ## Use it when - Necesitas mover un evento de Google Calendar a una nueva hora y avisar a los asistentes ## What triggers it - "Reprograma mi reunión de mañana para las 2pm y avisa a los invitados" - "Cambia la hora del evento EVENT_ID y notifica a todos los asistentes" ## Before you install - Requiere el binario `gws` y la skill `gws-calendar` cargada. ## Files - SKILL.md — 969 B ## SKILL.md Reproduced verbatim from googleworkspace/cli under Apache-2.0. This section is the upstream document and is in English. # 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"}}'` --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/recipe-reschedule-meeting