Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
List attendees and session durations from a past Google Meet conference record.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-review-meet-participants3description: "Review who attended a Google Meet conference and for how long."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "productivity"9requires:10bins:11- gws12skills:13- gws-meet14---1516# Review Google Meet Attendance1718> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-meet`1920Review who attended a Google Meet conference and for how long.2122## Steps23241. List recent conferences: `gws meet conferenceRecords list --format table`252. List participants: `gws meet conferenceRecords participants list --params '{"parent": "conferenceRecords/CONFERENCE_ID"}' --format table`263. Get session details: `gws meet conferenceRecords participants participantSessions list --params '{"parent": "conferenceRecords/CONFERENCE_ID/participants/PARTICIPANT_ID"}' --format table`2728