Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Manage Google Meet conference records, spaces, participants, recordings, and transcripts via CLI.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: gws-meet3description: "Manage Google Meet conferences."4metadata:5version: 0.22.56openclaw:7category: "productivity"8requires:9bins:10- gws11cliHelp: "gws meet --help"12---1314# meet (v2)1516> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.1718```bash19gws meet <resource> <method> [flags]20```2122## API Resources2324### conferenceRecords2526- `get` — Gets a conference record by conference ID.27- `list` — Lists the conference records. By default, ordered by start time and in descending order.28- `participants` — Operations on the 'participants' resource29- `recordings` — Operations on the 'recordings' resource30- `smartNotes` — Operations on the 'smartNotes' resource31- `transcripts` — Operations on the 'transcripts' resource3233### spaces3435- `create` — Creates a space.36- `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).37- `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).38- `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).3940## Discovering Commands4142Before calling any API method, inspect it:4344```bash45# Browse resources and methods46gws meet --help4748# Inspect a method's required params, types, and defaults49gws schema meet.<resource>.<method>50```5152Use `gws schema` output to build your `--params` and `--json` flags.5354