gws-meet
googleworkspace/cli
Manage Google Meet conferences via CLI—query records, spaces, participants, and transcripts.
What is gws-meet?
Command-line interface for Google Meet conference management through the Google Workspace API. Use this to retrieve conference records, manage meeting spaces, access participants and recordings, and fetch transcripts and smart notes.
- Query conference records by ID or list all conferences ordered by start time
- Create, retrieve, and update meeting spaces
- End active conferences programmatically
- Access participant lists, recordings, transcripts, and smart notes for conferences
- Inspect API schemas to discover required parameters and data types
How to install gws-meet
npx skills add null --skill gws-meet- Google Workspace CLI (gws) installed and configured
- Authentication credentials set up per gws-shared/SKILL.md
- Appropriate Google Workspace API permissions for Meet resources
How to use gws-meet
- 1.Run `gws meet --help` to browse available resources and methods
- 2.Use `gws schema meet.<resource>.<method>` to inspect required parameters and data types for your target operation
- 3.Build your command with `gws meet <resource> <method>` plus `--params` or `--json` flags based on schema output
- 4.Execute the command to interact with Google Meet conferences, spaces, or records
Use cases
- Retrieve transcripts and smart notes from past meetings for documentation
- Programmatically end active conferences in meeting spaces
- List all conference records for auditing or analytics
- Create new meeting spaces for team collaboration
- Update meeting space settings and configurations
- Google Workspace administrators
- Automation engineers building Meet integrations
- Teams needing programmatic access to meeting data
- Organizations requiring meeting audit trails and transcripts
gws-meet FAQ
Follow the setup in gws-shared/SKILL.md for Google Workspace CLI authentication and security rules.
Run `gws schema meet.<resource>.<method>` to see required params, types, and defaults before building your command.
Yes, use `gws meet conferenceRecords list` to retrieve all conference records, ordered by start time in descending order by default.
Use `gws meet conferenceRecords transcripts` operations to retrieve transcripts for a specific conference record.
Full instructions (SKILL.md)
Source of truth, from googleworkspace/cli.
name: gws-meet description: "Manage Google Meet conferences." metadata: version: 0.22.5 openclaw: category: "productivity" requires: bins: - gws cliHelp: "gws meet --help"
meet (v2)
PREREQUISITE: Read
../gws-shared/SKILL.mdfor auth, global flags, and security rules. If missing, rungws generate-skillsto create it.
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' resourcerecordings— Operations on the 'recordings' resourcesmartNotes— Operations on the 'smartNotes' resourcetranscripts— 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.get— Gets details about a meeting space. For an example, see Get a meeting space.patch— Updates details about a meeting space. For an example, see Update a meeting space.
Discovering Commands
Before calling any API method, inspect it:
# 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.
Related skills
More from googleworkspace/cli and the wider catalog.
gws-gmail
Send, read, and manage Gmail emails via Google Workspace CLI.
gws-drive
Manage Google Drive files, folders, and shared drives via CLI.
gws-docs
Read and write Google Docs via command line.
gws-calendar
Manage Google Calendar events, calendars, and access control via CLI.
gws-sheets
Read and write Google Sheets spreadsheets via CLI.
gws-gmail-send
Send emails via Gmail with attachments, CC/BCC, HTML support, and draft options.