# Recipe Create Shared Drive > Create a Google Shared Drive and add members with appropriate roles. Source: https://skillsagentes.com/skills/googleworkspace/cli/recipe-create-shared-drive Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 17 tok installed, 229 tok once triggered, 229 tok with every bundled file Bundle: 1 file, 914 B Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill recipe-create-shared-drive --agent claude-code ``` ## What it does - Crea una unidad compartida de Google con `gws drive drives create` - Añade miembros con roles mediante `gws drive permissions create` - Lista los miembros actuales con `gws drive permissions list` ## Use it when - Necesitas crear una nueva unidad compartida de Google y configurar sus miembros con roles ## What triggers it - "Crea una unidad compartida llamada Project X y añade a member@company.com como writer" - "Configura una nueva unidad compartida en Google Drive con miembros" ## Before you install - Requiere el binario `gws` y la skill `gws-drive` cargada. ## Files - SKILL.md — 914 B ## SKILL.md Reproduced verbatim from googleworkspace/cli under Apache-2.0. This section is the upstream document and is in English. # 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 1. Create shared drive: `gws drive drives create --params '{"requestId": "unique-id-123"}' --json '{"name": "Project X"}'` 2. Add a member: `gws drive permissions create --params '{"fileId": "DRIVE_ID", "supportsAllDrives": true}' --json '{"role": "writer", "type": "user", "emailAddress": "member@company.com"}'` 3. List members: `gws drive permissions list --params '{"fileId": "DRIVE_ID", "supportsAllDrives": true}'` --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/recipe-create-shared-drive