
Recipe Review Meet Participants
Audit Google Meet attendance and session duration after calls using the gws CLI without opening the Admin console.
Overview
recipe-review-meet-participants is an agent skill for the Operate phase that reviews Google Meet attendance and session length via gws meet conferenceRecords commands.
Install
npx skills add https://github.com/googleworkspace/cli --skill recipe-review-meet-participantsWhat is this skill?
- Three-step recipe: list conferenceRecords, participants, then participantSessions via gws meet
- Depends on gws-meet skill and gws binary on PATH
- Table-formatted CLI output for quick scans of who joined and how long
- Parameterized parent paths for conferenceRecords/CONFERENCE_ID and participant IDs
- OpenClaw recipe metadata (version 0.22.5) under productivity domain
- 3-step recipe
- prerequisite skill gws-meet
Adoption & trust: 15.3k installs on skills.sh; 26.9k GitHub stars; 3/3 security scanners passed (skills.sh audits).
What problem does it solve?
You finished a Meet but lack a quick, scriptable way to see who attended and for how long without clicking through admin views.
Who is it for?
Builders already on gws + gws-meet who want post-call attendance snapshots from the terminal or agent.
Skip if: Teams without Google Workspace Meet API access, gws installed, or the gws-meet prerequisite skill loaded.
When should I use this skill?
You need to review who attended a Google Meet conference and for how long using gws.
What do I get? / Deliverables
You get tabular conference, participant, and session lists you can paste into notes or tickets for follow-up accountability.
- Table output of conferences, participants, and session durations
Recommended Skills
Journey fit
Post-meeting attendance review is an operational follow-up on how collaboration actually ran, not greenfield building or launch work. Iterate fits recurring check-ins on meeting patterns and participant engagement after conferences end.
How it compares
Operational read-only recipe using gws CLI, not a Calendar scheduling or Meet creation integration.
Common Questions / FAQ
Who is recipe-review-meet-participants for?
Solo and indie operators who automate Google Workspace with gws and need Meet attendance forensics after calls.
When should I use recipe-review-meet-participants?
In Operate (iterate) after important meetings; also handy in Grow (support) when reconciling who was on a customer or team call.
Is recipe-review-meet-participants safe to install?
It only documents read/list Meet API calls via gws; review the Security Audits panel on this Prism page before trusting the repo in your environment.
Workflow Chain
Requires first: gws meet
SKILL.md
READMESKILL.md - Recipe Review Meet Participants
# 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`