# Recipe Plan Weekly Schedule > Review your Google Calendar week, identify gaps, and add events to fill them. Source: https://skillsagentes.com/skills/googleworkspace/cli/recipe-plan-weekly-schedule Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 19 tok installed, 232 tok once triggered, 232 tok with every bundled file Bundle: 1 file, 927 B Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill recipe-plan-weekly-schedule --agent claude-code ``` ## What it does - Revisa la agenda semanal de Google Calendar con `gws calendar +agenda` - Consulta disponibilidad libre/ocupado de la semana con `gws calendar freebusy query` - Añade eventos nuevos con `gws calendar +insert` para llenar los huecos encontrados - Vuelve a revisar la agenda actualizada tras insertar los eventos ## Use it when - Quieres revisar tu semana en Google Calendar e identificar huecos libres - Necesitas rellenar espacios vacíos con nuevos eventos, como bloques de trabajo profundo ## What triggers it - "Revisa mi agenda de esta semana y añade bloques de trabajo en los huecos libres" - "Comprueba mi disponibilidad esta semana y agenda un evento de trabajo profundo" ## Before you install - Requiere el binario `gws` y tener cargada la skill `gws-calendar`. ## Files - SKILL.md — 927 B ## SKILL.md Reproduced verbatim from googleworkspace/cli under Apache-2.0. This section is the upstream document and is in English. # Plan Your Weekly Google Calendar Schedule > **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar` Review your Google Calendar week, identify gaps, and add events to fill them. ## Steps 1. Check this week's agenda: `gws calendar +agenda` 2. Check free/busy for the week: `gws calendar freebusy query --json '{"timeMin": "2025-01-20T00:00:00Z", "timeMax": "2025-01-25T00:00:00Z", "items": [{"id": "primary"}]}'` 3. Add a new event: `gws calendar +insert --summary 'Deep Work Block' --start '2026-01-21T14:00:00' --end '2026-01-21T16:00:00'` 4. Review updated schedule: `gws calendar +agenda` --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/recipe-plan-weekly-schedule