PluginBench
Skill
Review
Audit score 70

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
Prerequisites
  • Google Workspace CLI (gws) installed and configured
  • Authentication credentials set up per gws-shared/SKILL.md
  • Appropriate Google Workspace API permissions for Meet resources
Claude Code
Cursor
Windsurf
Cline

How to use gws-meet

  1. 1.Run `gws meet --help` to browse available resources and methods
  2. 2.Use `gws schema meet.<resource>.<method>` to inspect required parameters and data types for your target operation
  3. 3.Build your command with `gws meet <resource> <method>` plus `--params` or `--json` flags based on schema output
  4. 4.Execute the command to interact with Google Meet conferences, spaces, or records

Use cases

Good for
  • 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
Who it's for
  • 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

What authentication is required?

Follow the setup in gws-shared/SKILL.md for Google Workspace CLI authentication and security rules.

How do I discover what parameters a method needs?

Run `gws schema meet.<resource>.<method>` to see required params, types, and defaults before building your command.

Can I list all past conferences?

Yes, use `gws meet conferenceRecords list` to retrieve all conference records, ordered by start time in descending order by default.

How do I access meeting transcripts?

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.md for auth, global flags, and security rules. If missing, run gws generate-skills to 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' 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.
  • 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.