Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Create a Google Shared Drive and add team members with writer or reader roles.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-create-shared-drive3description: "Create a Google Shared Drive and add members with appropriate roles."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "productivity"9requires:10bins:11- gws12skills:13- gws-drive14---1516# Create and Configure a Shared Drive1718> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive`1920Create a Google Shared Drive and add members with appropriate roles.2122## Steps23241. Create shared drive: `gws drive drives create --params '{"requestId": "unique-id-123"}' --json '{"name": "Project X"}'`252. Add a member: `gws drive permissions create --params '{"fileId": "DRIVE_ID", "supportsAllDrives": true}' --json '{"role": "writer", "type": "user", "emailAddress": "[email protected]"}'`263. List members: `gws drive permissions list --params '{"fileId": "DRIVE_ID", "supportsAllDrives": true}'`2728