Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Share Google Drive files with all attendees of a specific Google Calendar event.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-share-event-materials3description: "Share Google Drive files with all attendees of a Google Calendar event."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "productivity"9requires:10bins:11- gws12skills:13- gws-calendar14- gws-drive15---1617# Share Files with Meeting Attendees1819> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`, `gws-drive`2021Share Google Drive files with all attendees of a Google Calendar event.2223## Steps24251. Get event attendees: `gws calendar events get --params '{"calendarId": "primary", "eventId": "EVENT_ID"}'`262. Share file with each attendee: `gws drive permissions create --params '{"fileId": "FILE_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "[email protected]"}'`273. Verify sharing: `gws drive permissions list --params '{"fileId": "FILE_ID"}' --format table`2829