# Recipe Share Folder With Team > Share a Google Drive folder and all its contents with a list of collaborators. Source: https://skillsagentes.com/skills/googleworkspace/cli/recipe-share-folder-with-team Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 20 tok installed, 278 tok once triggered, 278 tok with every bundled file Bundle: 1 file, 1 KB Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill recipe-share-folder-with-team --agent claude-code ``` ## What it does - Busca una carpeta de Google Drive por nombre usando `gws drive files list` - Comparte la carpeta con colaboradores como editor (writer) o visualizador (reader) - Verifica los permisos aplicados con `gws drive permissions list --format table` ## Use it when - Necesitas compartir una carpeta de Google Drive y todo su contenido con una lista de colaboradores ## What triggers it - "Comparte la carpeta 'Project X' con colaboracion@empresa.com como editor" - "Dale acceso de solo lectura a stakeholder@company.com en esta carpeta de Drive" - "Verifica quién tiene permisos sobre la carpeta del proyecto" ## Before you install - Requiere el binario `gws` y cargar la skill `gws-drive`. ## Files - SKILL.md — 1 KB ## SKILL.md Reproduced verbatim from googleworkspace/cli under Apache-2.0. This section is the upstream document and is in English. # Share a Google Drive Folder with a Team > **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive` Share a Google Drive folder and all its contents with a list of collaborators. ## Steps 1. Find the folder: `gws drive files list --params '{"q": "name = '\''Project X'\'' and mimeType = '\''application/vnd.google-apps.folder'\''"}'` 2. Share as editor: `gws drive permissions create --params '{"fileId": "FOLDER_ID"}' --json '{"role": "writer", "type": "user", "emailAddress": "colleague@company.com"}'` 3. Share as viewer: `gws drive permissions create --params '{"fileId": "FOLDER_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "stakeholder@company.com"}'` 4. Verify permissions: `gws drive permissions list --params '{"fileId": "FOLDER_ID"}' --format table` --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/recipe-share-folder-with-team