# Recipe Create Presentation > Create a new Google Slides presentation and add initial slides. Source: https://skillsagentes.com/skills/googleworkspace/cli/recipe-create-presentation Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 16 tok installed, 201 tok once triggered, 201 tok with every bundled file Bundle: 1 file, 802 B Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill recipe-create-presentation --agent claude-code ``` ## What it does - Crea una nueva presentación de Google Slides con `gws slides presentations create` - Obtiene el ID de la presentación desde la respuesta - Comparte la presentación con el equipo usando `gws drive permissions create` ## Use it when - Cuando se necesita crear una nueva presentación de Google Slides y añadir diapositivas iniciales ## What triggers it - "Crea una presentación de Google Slides llamada 'Quarterly Review Q2'" - "Necesito una nueva presentación de Slides y compartirla con mi equipo" ## Before you install - Requiere el binario `gws` y tener cargada la skill `gws-slides`. ## Files - SKILL.md — 802 B ## SKILL.md Reproduced verbatim from googleworkspace/cli under Apache-2.0. This section is the upstream document and is in English. # Create a Google Slides Presentation > **PREREQUISITE:** Load the following skills to execute this recipe: `gws-slides` Create a new Google Slides presentation and add initial slides. ## Steps 1. Create presentation: `gws slides presentations create --json '{"title": "Quarterly Review Q2"}'` 2. Get the presentation ID from the response 3. Share with team: `gws drive permissions create --params '{"fileId": "PRESENTATION_ID"}' --json '{"role": "writer", "type": "user", "emailAddress": "team@company.com"}'` --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/recipe-create-presentation