google-meet
Google Meet API for managing meeting spaces, conference records, participants, recordings, and transcripts. Use when user mentions "Meet", "meeting space", "conference record", "meeting recording", "meeting transcript", or "Google Meet link".
What this skill does
## Troubleshooting
If requests fail, run `zero doctor check-connector --env-name GOOGLE_MEET_TOKEN` or `zero doctor check-connector --url https://meet.googleapis.com/v2/spaces --method POST`
## How to Use
Base URL: `https://meet.googleapis.com/v2`
## Spaces
A Space is a virtual place where conferences are held. Only one active conference can run in a space at a time.
### Create a Meeting Space
Create a new meeting space with a generated Meet link:
```bash
curl -s -X POST "https://meet.googleapis.com/v2/spaces" \
--header "Authorization: Bearer $GOOGLE_MEET_TOKEN" \
--header "Content-Type: application/json" \
-d '{}' | jq '{name, meetingUri, meetingCode}'
```
Create with custom access configuration. Write to `/tmp/meet_request.json`:
```json
{
"config": {
"accessType": "TRUSTED",
"entryPointAccess": "ALL",
"attendanceReportGenerationType": "GENERATE_AUTOMATICALLY"
}
}
```
Then run:
```bash
curl -s -X POST "https://meet.googleapis.com/v2/spaces" \
--header "Authorization: Bearer $GOOGLE_MEET_TOKEN" \
--header "Content-Type: application/json" \
-d @/tmp/meet_request.json | jq '{name, meetingUri, meetingCode, config}'
```
### Get a Meeting Space
Get details for a space by name or meeting code:
```bash
curl -s "https://meet.googleapis.com/v2/spaces/{space-name}" \
--header "Authorization: Bearer $GOOGLE_MEET_TOKEN" | jq '{name, meetingUri, meetingCode, config, activeConference}'
```
You can also use the meeting code (e.g. `abc-mnop-xyz`) as the space identifier:
```bash
curl -s "https://meet.googleapis.com/v2/spaces/{meeting-code}" \
--header "Authorization: Bearer $GOOGLE_MEET_TOKEN" | jq '{name, meetingUri, meetingCode}'
```
### Update a Meeting Space
Patch space configuration. Write to `/tmp/meet_request.json`:
```json
{
"config": {
"accessType": "OPEN"
}
}
```
Then run:
```bash
curl -s -X PATCH "https://meet.googleapis.com/v2/spaces/{space-name}?updateMask=config.accessType" \
--header "Authorization: Bearer $GOOGLE_MEET_TOKEN" \
--header "Content-Type: application/json" \
-d @/tmp/meet_request.json | jq '{name, meetingUri, config}'
```
Available `accessType` values:
- `OPEN` — Anyone with the link can join
- `TRUSTED` — Only trusted users (those in same org or explicitly invited)
- `RESTRICTED` — Only explicitly invited users
### End an Active Conference
End the active conference in a meeting space:
```bash
curl -s -X POST "https://meet.googleapis.com/v2/spaces/{space-name}:endActiveConference" \
--header "Authorization: Bearer $GOOGLE_MEET_TOKEN" \
--header "Content-Type: application/json" \
-d '{}'
```
## Conference Records
A ConferenceRecord represents a single instance of a meeting held in a space.
### List Conference Records
List all past conference records (most recent first):
```bash
curl -s "https://meet.googleapis.com/v2/conferenceRecords?pageSize=20" \
--header "Authorization: Bearer $GOOGLE_MEET_TOKEN" | jq '.conferenceRecords[]? | {name, startTime, endTime, space}'
```
Filter to records for a specific space:
```bash
curl -s "https://meet.googleapis.com/v2/conferenceRecords?filter=space%3D%22spaces%2F{space-name}%22&pageSize=10" \
--header "Authorization: Bearer $GOOGLE_MEET_TOKEN" | jq '.conferenceRecords[]? | {name, startTime, endTime}'
```
Filter to only ongoing conferences:
```bash
curl -s "https://meet.googleapis.com/v2/conferenceRecords?filter=end_time%20IS%20NULL" \
--header "Authorization: Bearer $GOOGLE_MEET_TOKEN" | jq '.conferenceRecords[]? | {name, startTime, space}'
```
### Get a Conference Record
Get details for a specific conference record:
```bash
curl -s "https://meet.googleapis.com/v2/conferenceRecords/{conference-record-id}" \
--header "Authorization: Bearer $GOOGLE_MEET_TOKEN" | jq '{name, startTime, endTime, expireTime, space}'
```
## Participants
### List Participants in a Conference
List all participants in a conference record:
```bash
curl -s "https://meet.googleapis.com/v2/conferenceRecords/{conference-record-id}/participants?pageSize=100" \
--header "Authorization: Bearer $GOOGLE_MEET_TOKEN" | jq '.participants[]? | {name, earliestStartTime, latestEndTime}'
```
List only active (currently connected) participants:
```bash
curl -s "https://meet.googleapis.com/v2/conferenceRecords/{conference-record-id}/participants?filter=latest_end_time%20IS%20NULL" \
--header "Authorization: Bearer $GOOGLE_MEET_TOKEN" | jq '.participants[]? | {name, earliestStartTime}'
```
### Get a Participant
Get details for a specific participant:
```bash
curl -s "https://meet.googleapis.com/v2/conferenceRecords/{conference-record-id}/participants/{participant-id}" \
--header "Authorization: Bearer $GOOGLE_MEET_TOKEN" | jq '.'
```
### List Participant Sessions
Get the individual sessions (join/leave events) for a participant:
```bash
curl -s "https://meet.googleapis.com/v2/conferenceRecords/{conference-record-id}/participants/{participant-id}/participantSessions" \
--header "Authorization: Bearer $GOOGLE_MEET_TOKEN" | jq '.participantSessions[]? | {name, startTime, endTime}'
```
## Recordings
### List Recordings
List all recordings for a conference record:
```bash
curl -s "https://meet.googleapis.com/v2/conferenceRecords/{conference-record-id}/recordings" \
--header "Authorization: Bearer $GOOGLE_MEET_TOKEN" | jq '.recordings[]? | {name, startTime, endTime, state}'
```
### Get a Recording
Get details for a specific recording (includes Drive file info):
```bash
curl -s "https://meet.googleapis.com/v2/conferenceRecords/{conference-record-id}/recordings/{recording-id}" \
--header "Authorization: Bearer $GOOGLE_MEET_TOKEN" | jq '{name, state, startTime, endTime, driveDestination}'
```
The `driveDestination` field contains the Google Drive file ID and export URI for downloading the recording.
## Transcripts
### List Transcripts
List all transcripts for a conference record:
```bash
curl -s "https://meet.googleapis.com/v2/conferenceRecords/{conference-record-id}/transcripts" \
--header "Authorization: Bearer $GOOGLE_MEET_TOKEN" | jq '.transcripts[]? | {name, startTime, endTime, state}'
```
### Get a Transcript
Get details for a specific transcript:
```bash
curl -s "https://meet.googleapis.com/v2/conferenceRecords/{conference-record-id}/transcripts/{transcript-id}" \
--header "Authorization: Bearer $GOOGLE_MEET_TOKEN" | jq '{name, state, startTime, endTime, docsDestination}'
```
The `docsDestination` field contains the Google Docs export ID and URI for the transcript document.
### List Transcript Entries
List the individual spoken segments in a transcript:
```bash
curl -s "https://meet.googleapis.com/v2/conferenceRecords/{conference-record-id}/transcripts/{transcript-id}/entries?pageSize=100" \
--header "Authorization: Bearer $GOOGLE_MEET_TOKEN" | jq '.entries[]? | {name, participant, text, startTime, endTime}'
```
## Common Patterns
### Get the Latest Meeting Record for a Space
```bash
curl -s "https://meet.googleapis.com/v2/conferenceRecords?filter=space%3D%22spaces%2F{space-name}%22&pageSize=1" \
--header "Authorization: Bearer $GOOGLE_MEET_TOKEN" | jq '.conferenceRecords[0] | {name, startTime, endTime}'
```
### Check if a Meeting is Currently Active
```bash
curl -s "https://meet.googleapis.com/v2/spaces/{space-name}" \
--header "Authorization: Bearer $GOOGLE_MEET_TOKEN" | jq '.activeConference'
```
Returns `null` if no active conference, or the conference record details if one is ongoing.
## Guidelines
1. **Space naming**: Spaces use the format `spaces/{space}` where `{space}` is a server-generated ID (e.g. `jQCFfuBOdN5z`). You can also use the friendly meeting code (e.g. `abc-mnop-xyz`) as an alias.
2. **Conference record IDs**: Use the format `conferenceRecords/{conferenceRecord}` as the parent path for participants, recordings, and transcripts.
3. **Ongoing vs ended**: Ongoing conferences have `endTime` unset. Use the `end_time IS NULL` filter to find active meetings.
4. **Pagination**:Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.