$npx -y skills add googleworkspace/cli --skill gws-meetManage Google Meet conferences.
| 1 | # meet (v2) |
| 2 | |
| 3 | > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it. |
| 4 | |
| 5 | ```bash |
| 6 | gws meet <resource> <method> [flags] |
| 7 | ``` |
| 8 | |
| 9 | ## API Resources |
| 10 | |
| 11 | ### conferenceRecords |
| 12 | |
| 13 | - `get` — Gets a conference record by conference ID. |
| 14 | - `list` — Lists the conference records. By default, ordered by start time and in descending order. |
| 15 | - `participants` — Operations on the 'participants' resource |
| 16 | - `recordings` — Operations on the 'recordings' resource |
| 17 | - `smartNotes` — Operations on the 'smartNotes' resource |
| 18 | - `transcripts` — Operations on the 'transcripts' resource |
| 19 | |
| 20 | ### spaces |
| 21 | |
| 22 | - `create` — Creates a space. |
| 23 | - `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). |
| 24 | - `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). |
| 25 | - `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). |
| 26 | |
| 27 | ## Discovering Commands |
| 28 | |
| 29 | Before calling any API method, inspect it: |
| 30 | |
| 31 | ```bash |
| 32 | # Browse resources and methods |
| 33 | gws meet --help |
| 34 | |
| 35 | # Inspect a method's required params, types, and defaults |
| 36 | gws schema meet.<resource>.<method> |
| 37 | ``` |
| 38 | |
| 39 | Use `gws schema` output to build your `--params` and `--json` flags. |