From gws
Share Google Drive files with all attendees of a Google Calendar event.
npx claudepluginhub fakoli/fakoli-plugins --plugin gwsThis skill uses the workspace's default tool permissions.
Share Google Drive files with all attendees of a Google Calendar event.
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Designs, implements, and audits WCAG 2.2 AA accessible UIs for Web (ARIA/HTML5), iOS (SwiftUI traits), and Android (Compose semantics). Audits code for compliance gaps.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Share Google Drive files with all attendees of a Google Calendar event.
Use this workflow when the user wants to share preparation materials, agendas, or documents with everyone invited to a specific meeting.
gws calendar events get \
--params '{"calendarId": "primary", "eventId": "EVENT_ID"}' \
--fields "summary,attendees"
Extract the attendee email addresses.
For each attendee, grant read access:
gws drive permissions create \
--params '{"fileId": "FILE_ID"}' \
--json '{"role": "reader", "type": "user", "emailAddress": "ATTENDEE_EMAIL"}' \
--dry-run
Confirm the full list with the user, then execute for each attendee.
gws drive permissions list --params '{"fileId": "FILE_ID"}' --format table
--dry-run on the first permission grant to confirm the format"role": "reader" for view-only, "writer" if attendees need to collaborate