# Recipe Find Free Time > Query Google Calendar free/busy status for multiple users to find a meeting slot. Source: https://skillsagentes.com/skills/googleworkspace/cli/recipe-find-free-time Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 20 tok installed, 240 tok once triggered, 240 tok with every bundled file Bundle: 1 file, 958 B Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill recipe-find-free-time --agent claude-code ``` ## What it does - Consulta el estado free/busy de Google Calendar para varios usuarios usando `gws calendar freebusy query` - Revisa el resultado para localizar huecos libres que coincidan entre calendarios - Crea el evento en el hueco encontrado con `gws calendar +insert` incluyendo asistentes ## Use it when - Se necesita encontrar un horario de reunión que funcione para varios usuarios de Google Calendar ## What triggers it - "Busca un hueco libre entre user1@company.com y user2@company.com para una reunión el 18 de marzo" - "Encuentra un horario disponible en ambos calendarios y agenda la reunión" ## Before you install - Requiere el binario `gws` y tener cargada la skill `gws-calendar`. ## Files - SKILL.md — 958 B ## SKILL.md Reproduced verbatim from googleworkspace/cli under Apache-2.0. This section is the upstream document and is in English. # Find Free Time Across Calendars > **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar` Query Google Calendar free/busy status for multiple users to find a meeting slot. ## Steps 1. Query free/busy: `gws calendar freebusy query --json '{"timeMin": "2024-03-18T08:00:00Z", "timeMax": "2024-03-18T18:00:00Z", "items": [{"id": "user1@company.com"}, {"id": "user2@company.com"}]}'` 2. Review the output to find overlapping free slots 3. Create event in the free slot: `gws calendar +insert --summary 'Meeting' --attendee user1@company.com --attendee user2@company.com --start '2024-03-18T14:00:00' --end '2024-03-18T14:30:00'` --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/recipe-find-free-time