Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Share a Google Drive folder with multiple collaborators at different permission levels (editor/viewer).
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-folder-with-team3description: "Share a Google Drive folder and all its contents with a list of collaborators."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "productivity"9requires:10bins:11- gws12skills:13- gws-drive14---1516# Share a Google Drive Folder with a Team1718> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive`1920Share a Google Drive folder and all its contents with a list of collaborators.2122## Steps23241. Find the folder: `gws drive files list --params '{"q": "name = '\''Project X'\'' and mimeType = '\''application/vnd.google-apps.folder'\''"}'`252. Share as editor: `gws drive permissions create --params '{"fileId": "FOLDER_ID"}' --json '{"role": "writer", "type": "user", "emailAddress": "[email protected]"}'`263. Share as viewer: `gws drive permissions create --params '{"fileId": "FOLDER_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "[email protected]"}'`274. Verify permissions: `gws drive permissions list --params '{"fileId": "FOLDER_ID"}' --format table`2829