# Recipe Create Feedback Form > Create a Google Form for feedback and share it via Gmail. Source: https://skillsagentes.com/skills/googleworkspace/cli/recipe-create-feedback-form Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 14 tok installed, 207 tok once triggered, 207 tok with every bundled file Bundle: 1 file, 827 B Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill recipe-create-feedback-form --agent claude-code ``` ## What it does - Crea un Google Form para recoger feedback con `gws forms forms create` - Extrae la URL del formulario (campo responderUri) de la respuesta - Envía la URL por Gmail usando `gws gmail +send` con destinatario, asunto y cuerpo ## Use it when - Se necesita crear un formulario de feedback y compartirlo por correo en un solo flujo ## What triggers it - "Crea un formulario de feedback del evento y envíaselo a los asistentes por email" - "Genera un Google Form de feedback y compártelo por Gmail" ## Before you install - Requiere el binario `gws` y las skills `gws-forms` y `gws-gmail` cargadas. ## Files - SKILL.md — 827 B ## SKILL.md Reproduced verbatim from googleworkspace/cli under Apache-2.0. This section is the upstream document and is in English. # Create and Share a Google Form > **PREREQUISITE:** Load the following skills to execute this recipe: `gws-forms`, `gws-gmail` Create a Google Form for feedback and share it via Gmail. ## Steps 1. Create form: `gws forms forms create --json '{"info": {"title": "Event Feedback", "documentTitle": "Event Feedback Form"}}'` 2. Get the form URL from the response (responderUri field) 3. Email the form: `gws gmail +send --to attendees@company.com --subject 'Please share your feedback' --body 'Fill out the form: FORM_URL'` --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/recipe-create-feedback-form