# Gws Meet > Manage Google Meet conferences. Source: https://skillsagentes.com/skills/googleworkspace/cli/gws-meet Repository: https://github.com/googleworkspace/cli Author: googleworkspace License: Apache-2.0 Updated: hace 4 meses Context cost: 8 tok installed, 451 tok once triggered, 451 tok with every bundled file Bundle: 1 file, 2 KB Permissions requested: none declared ## Install ```bash npx -y skills add googleworkspace/cli --skill gws-meet --agent claude-code ``` ## What it does - Gestiona conferencias de Google Meet vía CLI: creación y consulta de espacios, cierre de conferencias activas - Consulta registros de conferencias (conferenceRecords): participantes, grabaciones, notas inteligentes y transcripciones - Permite inspeccionar cada método con gws schema meet.. antes de invocarlo ## Use it when - Se necesita crear, obtener o actualizar un espacio de reunión de Google Meet - Se necesita finalizar una conferencia activa - Se necesita listar o consultar registros de conferencias, participantes, grabaciones, notas o transcripciones ## What triggers it - "Crea un nuevo espacio de reunión en Google Meet" - "Termina la conferencia activa en este espacio de Meet" - "Lista las grabaciones y transcripciones de la última conferencia" ## Before you install - Requiere el binario gws y haber leído ../gws-shared/SKILL.md para autenticación, flags globales y reglas de seguridad. ## 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. # meet (v2) > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it. ```bash gws meet [flags] ``` ## API Resources ### conferenceRecords - `get` — Gets a conference record by conference ID. - `list` — Lists the conference records. By default, ordered by start time and in descending order. - `participants` — Operations on the 'participants' resource - `recordings` — Operations on the 'recordings' resource - `smartNotes` — Operations on the 'smartNotes' resource - `transcripts` — Operations on the 'transcripts' resource ### spaces - `create` — Creates a space. - `endActiveConference` — Ends an active conference (if there's one). For an example, see [End active conference](https://developers.google.com/workspace/meet/api/guides/meeting-spaces#end-active-conference). - `get` — Gets details about a meeting space. For an example, see [Get a meeting space](https://developers.google.com/workspace/meet/api/guides/meeting-spaces#get-meeting-space). - `patch` — Updates details about a meeting space. For an example, see [Update a meeting space](https://developers.google.com/workspace/meet/api/guides/meeting-spaces#update-meeting-space). ## Discovering Commands Before calling any API method, inspect it: ```bash # Browse resources and methods gws meet --help # Inspect a method's required params, types, and defaults gws schema meet.. ``` Use `gws schema` output to build your `--params` and `--json` flags. --- Skills Agentes — https://skillsagentes.com/skills/googleworkspace/cli/gws-meet