# Recipe Share Event Materials > Share Google Drive files with all attendees of a Google Calendar event. Source: https://skillsagentes.com/skills/googleworkspace/cli/recipe-share-event-materials Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 18 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-share-event-materials --agent claude-code ``` ## What it does - Obtiene la lista de asistentes de un evento de Google Calendar - Comparte un archivo de Google Drive con cada asistente como lector - Verifica los permisos de compartición del archivo con una tabla ## Use it when - Cuando se necesita compartir materiales de Drive con todos los asistentes de una reunión de Calendar ## What triggers it - "Comparte este documento de Drive con todos los asistentes del evento EVENT_ID" - "Dale acceso de lectura del archivo a todos los invitados a la reunión de mañana" ## Before you install - Requiere el binario gws y las skills gws-calendar y gws-drive cargadas. ## 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. # Share Files with Meeting Attendees > **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`, `gws-drive` Share Google Drive files with all attendees of a Google Calendar event. ## Steps 1. Get event attendees: `gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'` 2. Share file with each attendee: `gws drive permissions create --params '{"fileId": "FILE_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "attendee@company.com"}'` 3. Verify sharing: `gws drive permissions list --params '{"fileId": "FILE_ID"}' --format table` --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/recipe-share-event-materials