recipe-review-meet-participants
googleworkspace/cli
Review Google Meet attendance records and participant session duration.
What is recipe-review-meet-participants?
This recipe retrieves attendance data from Google Meet conferences, showing who participated and how long they stayed. Use it to audit meeting attendance, track engagement, or generate attendance reports.
- List recent Google Meet conference records
- Display all participants in a specific conference
- Show individual participant session details and duration
- Format attendance data as tables for easy review
- Query attendance history by conference ID
How to install recipe-review-meet-participants
npx skills add null --skill recipe-review-meet-participants- gws-meet skill must be installed and loaded
- Access to Google Workspace with Google Meet enabled
- Appropriate permissions to view conference records
How to use recipe-review-meet-participants
- 1.Run `gws meet conferenceRecords list --format table` to display recent conferences
- 2.Identify the CONFERENCE_ID of the meeting you want to review
- 3.Run `gws meet conferenceRecords participants list --params '{"parent": "conferenceRecords/CONFERENCE_ID"}' --format table` to list all participants
- 4.For detailed session info, run `gws meet conferenceRecords participants participantSessions list --params '{"parent": "conferenceRecords/CONFERENCE_ID/participants/PARTICIPANT_ID"}' --format table`
Use cases
- Audit attendance for a company all-hands or training meeting
- Generate attendance reports for compliance or HR purposes
- Verify participant engagement by reviewing session duration
- Track who joined a specific client or team meeting
- Review late arrivals or early departures from conferences
- Meeting organizers
- HR and compliance teams
- Team leads tracking attendance
- Administrators auditing meeting participation
recipe-review-meet-participants FAQ
It retrieves conference records, participant lists, and participant session details including duration and timing information.
Yes, you must have appropriate Google Workspace permissions to view conference records and participant data.
The recipe outputs data in table format; you can redirect output to files or use standard CLI tools to export to CSV or other formats.
The recipe lists recent conferences; the exact retention period depends on your Google Workspace settings and Google Meet data retention policies.
Full instructions (SKILL.md)
Source of truth, from googleworkspace/cli.
name: recipe-review-meet-participants description: "Review who attended a Google Meet conference and for how long." metadata: version: 0.22.5 openclaw: category: "recipe" domain: "productivity" requires: bins: - gws skills: - gws-meet
Review Google Meet Attendance
PREREQUISITE: Load the following skills to execute this recipe:
gws-meet
Review who attended a Google Meet conference and for how long.
Steps
- List recent conferences:
gws meet conferenceRecords list --format table - List participants:
gws meet conferenceRecords participants list --params '{"parent": "conferenceRecords/CONFERENCE_ID"}' --format table - Get session details:
gws meet conferenceRecords participants participantSessions list --params '{"parent": "conferenceRecords/CONFERENCE_ID/participants/PARTICIPANT_ID"}' --format table
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.