# Gws Forms > Read and write Google Forms. Source: https://skillsagentes.com/skills/googleworkspace/cli/gws-forms Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 7 tok installed, 394 tok once triggered, 394 tok with every bundled file Bundle: 1 file, 2 KB Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill gws-forms --agent claude-code ``` ## What it does - Ofrece comandos CLI para leer y escribir Google Forms mediante `gws forms ` - Permite crear formularios, actualizarlos con `batchUpdate`, obtenerlos con `get` y ajustar la publicación con `setPublishSettings` - Da acceso a las respuestas y watches del formulario a través de subrecursos ## Use it when - Cuando se necesita crear, leer o modificar un Google Form desde la línea de comandos - Cuando hay que consultar o gestionar las respuestas de un formulario - Cuando se requiere inspeccionar el esquema de un método antes de llamarlo con `gws schema forms..` ## What triggers it - "Crea un nuevo Google Form con el título 'Encuesta de satisfacción'" - "Obtén las respuestas del formulario con ID XYZ" - "Actualiza las preguntas de este formulario usando batchUpdate" - "Cambia la configuración de publicación de este Google Form" ## Before you install - Requiere leer ../gws-shared/SKILL.md para autenticación, flags globales y reglas de seguridad, y tener instalado el binario `gws`. ## Files - SKILL.md — 2 KB ## SKILL.md Reproduced verbatim from googleworkspace/cli under Apache-2.0. This section is the upstream document and is in English. # forms (v1) > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it. ```bash gws forms [flags] ``` ## API Resources ### forms - `batchUpdate` — Change the form with a batch of updates. - `create` — Create a new form using the title given in the provided form message in the request. *Important:* Only the form.info.title and form.info.document_title fields are copied to the new form. All other fields including the form description, items and settings are disallowed. To create a new form and add items, you must first call forms.create to create an empty form with a title and (optional) document title, and then call forms.update to add the items. - `get` — Get a form. - `setPublishSettings` — Updates the publish settings of a form. Legacy forms aren't supported because they don't have the `publish_settings` field. - `responses` — Operations on the 'responses' resource - `watches` — Operations on the 'watches' resource ## Discovering Commands Before calling any API method, inspect it: ```bash # Browse resources and methods gws forms --help # Inspect a method's required params, types, and defaults gws schema forms.. ``` Use `gws schema` output to build your `--params` and `--json` flags. --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/gws-forms