---
name: Google Meet Manager
slug: google-meet-manager
category: Automation
description: Google Meet Manager creates and manages Google Meet spaces and conference records using the gws CLI. Use it to schedule or end conferences and retrieve participants, recordings, transcripts, and smart notes.
github: "https://github.com/googleworkspace/cli/tree/main/skills/gws-meet"
language: Rust
stars: 30381
forks: 1779
install: "npx degit https://github.com/googleworkspace/cli/tree/main/skills/gws-meet ~/.claude/skills/gws-meet"
installs_to: ~/.claude/skills/gws-meet
source_path: skills/gws-meet/SKILL.md
collection_size: 25
category_size: 1523
collection_url: "https://dirskills.com/collections/googleworkspace/cli"
added: 2026-08-14T07:11:39.365Z
last_synced: 2026-08-14T07:11:39.365Z
canonical_url: "https://dirskills.com/skills/google-meet-manager"
---

# Google Meet Manager

Google Meet Manager creates and manages Google Meet spaces and conference records using the gws CLI. Use it to schedule or end conferences and retrieve participants, recordings, transcripts, and smart notes.

**Install:**

```bash
npx degit https://github.com/googleworkspace/cli/tree/main/skills/gws-meet ~/.claude/skills/gws-meet
```

## README

# 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 <resource> <method> [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.<resource>.<method>
```

Use `gws schema` output to build your `--params` and `--json` flags.
