PluginBench
Skill
Pass
Audit score 90

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
Prerequisites
  • gws-meet skill must be installed and loaded
  • Access to Google Workspace with Google Meet enabled
  • Appropriate permissions to view conference records
Claude Code
Cursor
Windsurf
Cline

How to use recipe-review-meet-participants

  1. 1.Run `gws meet conferenceRecords list --format table` to display recent conferences
  2. 2.Identify the CONFERENCE_ID of the meeting you want to review
  3. 3.Run `gws meet conferenceRecords participants list --params '{"parent": "conferenceRecords/CONFERENCE_ID"}' --format table` to list all participants
  4. 4.For detailed session info, run `gws meet conferenceRecords participants participantSessions list --params '{"parent": "conferenceRecords/CONFERENCE_ID/participants/PARTICIPANT_ID"}' --format table`

Use cases

Good for
  • 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
Who it's for
  • Meeting organizers
  • HR and compliance teams
  • Team leads tracking attendance
  • Administrators auditing meeting participation

recipe-review-meet-participants FAQ

What data does this recipe retrieve?

It retrieves conference records, participant lists, and participant session details including duration and timing information.

Do I need special permissions?

Yes, you must have appropriate Google Workspace permissions to view conference records and participant data.

Can I export the attendance 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.

How far back can I review attendance?

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

  1. List recent conferences: gws meet conferenceRecords list --format table
  2. List participants: gws meet conferenceRecords participants list --params '{"parent": "conferenceRecords/CONFERENCE_ID"}' --format table
  3. Get session details: gws meet conferenceRecords participants participantSessions list --params '{"parent": "conferenceRecords/CONFERENCE_ID/participants/PARTICIPANT_ID"}' --format table