gws-meet

Manage Google Meet spaces, conference records, and transcripts via the gws CLI.

Updated Nov 9, 2023
One-click install
npx skills add https://github.com/oresttokovenko/dot-files --skill gws-meet-oresttokovenko
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: gws-meet
Source: https://github.com/oresttokovenko/dot-files/tree/main/chezmoi/dot_agents/skills/gws-meet
Command: npx skills add https://github.com/oresttokovenko/dot-files --skill gws-meet-oresttokovenko

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing Google Meet resources programmatically requires navigating the Google Meet API's resources and methods, which is tedious to do manually through consoles or raw HTTP requests. ## Core Features & Use Cases - Meeting Space Management: Create, retrieve, update, and end active conferences in Google Meet spaces. - Conference Record Access: List and retrieve conference records along with participants, recordings, transcripts, and smart notes. - Schema Discovery: Inspect any method's required parameters and defaults with gws schema before building API calls. - Use Case: After a weekly team sync, list recent conference records, fetch the transcript for a specific meeting, and pull participant attendance data for reporting. ## Quick Start Ask the assistant to list your recent Google Meet conference records and fetch the transcript for the latest one.

Frequently Asked Questions about gws-meet

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I list Google Meet conference records from the command line?

Run gws meet conferenceRecords list to retrieve conference records ordered by start time in descending order. Use gws schema meet.conferenceRecords.list first to inspect available filter and pagination parameters.

How do I create a Google Meet space programmatically?

Use gws meet spaces create to create a new meeting space. You can then retrieve it with spaces get, modify it with spaces patch, or terminate an ongoing session with spaces endActiveConference.

Can I get Google Meet transcripts and recordings via API?

Yes, the conferenceRecords resource exposes transcripts, recordings, participants, and smartNotes sub-resources. Access them through gws meet conferenceRecords transcripts and related methods after locating the parent conference record.

What do I need before using gws meet commands?

You need the gws binary installed and authenticated per the gws-shared skill instructions. If the shared skill file is missing, run gws generate-skills to create it before calling any Meet API methods.

How do I find required parameters for a Google Meet API method?

Run gws schema meet.<resource>.<method> to inspect a method's required parameters, types, and defaults. Use that output to build the --params and --json flags for your API call.