Recipe create shared drive
Create a Google Shared Drive and add members with appropriate roles.From its SKILL.md
npx -y skills add googleworkspace/cli --skill recipe-create-shared-driveAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
0.9 KB, 170 tokens by cl100k_base, as published. Nobody here has run it
Create and Configure a Shared Drive
PREREQUISITE: Load the following skills to execute this recipe:
gws-drive
Create a Google Shared Drive and add members with appropriate roles.
Steps
- Create shared drive:
gws drive drives create --params '{"requestId": "unique-id-123"}' --json '{"name": "Project X"}' - Add a member:
gws drive permissions create --params '{"fileId": "DRIVE_ID", "supportsAllDrives": true}' --json '{"role": "writer", "type": "user", "emailAddress": "[email protected]"}' - List members:
gws drive permissions list --params '{"fileId": "DRIVE_ID", "supportsAllDrives": true}'
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.