From gws
Create a Google Shared Drive and add members with appropriate roles.
npx claudepluginhub fakoli/fakoli-plugins --plugin gwsThis skill uses the workspace's default tool permissions.
Create a Google Shared Drive and add members with appropriate roles.
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.
Create a Google Shared Drive and add members with appropriate roles.
Use this workflow when the user needs to set up a shared team drive with specific member access.
gws drive drives create \
--params '{"requestId": "UNIQUE_REQUEST_ID"}' \
--json '{"name": "DRIVE_NAME"}'
Capture the drive ID from the response. Generate a unique requestId (e.g., UUID).
For each member, confirm role (organizer, writer, commenter, reader) with the user:
gws drive permissions create \
--params '{"fileId": "DRIVE_ID", "supportsAllDrives": true}' \
--json '{"role": "writer", "type": "user", "emailAddress": "member@company.com"}' \
--dry-run
Confirm, then execute.
gws drive permissions list \
--params '{"fileId": "DRIVE_ID", "supportsAllDrives": true}' --format table
--dry-run before adding permissions"supportsAllDrives": true for all Shared Drive operationsorganizer, fileOrganizer, writer, commenter, readerrequestId must be unique per request — use a UUID or timestamp