# Recipe Schedule Recurring Event > Create a recurring Google Calendar event with attendees. Source: https://skillsagentes.com/skills/googleworkspace/cli/recipe-schedule-recurring-event Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 14 tok installed, 231 tok once triggered, 231 tok with every bundled file Bundle: 1 file, 923 B Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill recipe-schedule-recurring-event --agent claude-code ``` ## What it does - Crea un evento recurrente en Google Calendar con asistentes usando `gws calendar events insert` - Verifica la creación consultando la agenda con `gws calendar +agenda --days 14 --format table` ## Use it when - Necesitas programar una reunión periódica (por ejemplo, un standup semanal) con asistentes en Google Calendar ## What triggers it - "Crea un evento recurrente semanal para el standup del equipo con team@company.com" - "Programa una reunión que se repita todos los lunes en Google Calendar" ## Before you install - Requiere el binario `gws` y tener cargada la skill `gws-calendar`. ## Files - SKILL.md — 923 B ## SKILL.md Reproduced verbatim from googleworkspace/cli under Apache-2.0. This section is the upstream document and is in English. # Schedule a Recurring Meeting > **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar` Create a recurring Google Calendar event with attendees. ## Steps 1. Create recurring event: `gws calendar events insert --params '{"calendarId": "primary"}' --json '{"summary": "Weekly Standup", "start": {"dateTime": "2024-03-18T09:00:00", "timeZone": "America/New_York"}, "end": {"dateTime": "2024-03-18T09:30:00", "timeZone": "America/New_York"}, "recurrence": ["RRULE:FREQ=WEEKLY;BYDAY=MO"], "attendees": [{"email": "team@company.com"}]}'` 2. Verify it was created: `gws calendar +agenda --days 14 --format table` --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/recipe-schedule-recurring-event