
Gws Meet
Operate Google Meet spaces and conference records from the terminal when your agent or solo workflow already uses the Google Workspace `gws` CLI.
Overview
gws-meet is an agent skill for the Build phase that documents how to manage Google Meet conferences and meeting spaces through the `gws meet` Google Workspace CLI.
Install
npx skills add https://github.com/googleworkspace/cli --skill gws-meetWhat is this skill?
- Covers two API resource groups: `conferenceRecords` (get, list, participants, recordings, smartNotes, transcripts) and `
- Documents the `gws meet <resource> <method> [flags]` CLI shape with discovery-oriented resource listing.
- Requires the shared `gws-shared` auth and security rules before any Meet command.
- OpenClaw metadata pins category productivity and a hard dependency on the `gws` binary.
- Versioned skill package (v0.22.5) aligned with Meet API v2 semantics.
- Documents 2 top-level Meet API resource groups: conferenceRecords and spaces.
- OpenClaw skill metadata version 0.22.5.
Adoption & trust: 20.5k installs on skills.sh; 26.9k GitHub stars; 2/3 security scanners passed (skills.sh audits).
What problem does it solve?
You need your agent to create Meet spaces, end conferences, or pull transcripts and recordings, but the Meet API surface is easy to call wrong without a structured CLI and auth reference.
Who is it for?
Indie builders already standardizing on `gws` for Workspace who want Meet listed alongside other CLI skills with explicit resource/method coverage.
Skip if: Teams without Google Workspace API credentials, without the `gws` binary, or who only need casual ad-hoc Meet links from Gmail or Calendar UI.
When should I use this skill?
You need to manage Google Meet conferences or meeting spaces via `gws meet` after satisfying gws-shared auth prerequisites.
What do I get? / Deliverables
Your agent runs documented `gws meet` resource methods with shared Workspace auth, producing API-backed Meet operations instead of guessed curl or admin-console steps.
- Correct `gws meet` resource and method invocations
- Conference record and space operations aligned with Meet API v2
Recommended Skills
Journey fit
Meet API calls are integration work you wire while building agent or internal tooling against Workspace—not a launch or growth task. The skill maps 1:1 to Google Meet v2 REST resources (spaces, conferenceRecords, transcripts) via `gws meet`, which is classic third-party API integration.
How it compares
Use this skill package for Meet API semantics via `gws`, not a generic HTTP integration skill that omits Workspace auth and resource naming.
Common Questions / FAQ
Who is gws-meet for?
Solo and indie builders shipping agent or shell workflows on Google Workspace who already use or plan to use the `gws` CLI for productivity APIs.
When should I use gws-meet?
During Build integrations when you automate meeting spaces, end active conferences, or fetch recordings and transcripts; also when documenting Meet ops for internal agent playbooks tied to Workspace.
Is gws-meet safe to install?
Review the Security Audits panel on this Prism page and treat it like any OAuth-capable CLI skill—confirm scopes, repo trust, and your gws-shared auth rules before granting network and secret access.
SKILL.md
READMESKILL.md - Gws Meet
# 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.