recipe-create-meet-space

Creates a Google Meet meeting space and emails the join link via gws CLI.

Updated Nov 9, 2023
One-click install
npx skills add https://github.com/oresttokovenko/dot-files --skill recipe-create-meet-space-oresttokovenko
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: recipe-create-meet-space
Source: https://github.com/oresttokovenko/dot-files/tree/main/chezmoi/dot_agents/skills/recipe-create-meet-space
Command: npx skills add https://github.com/oresttokovenko/dot-files --skill recipe-create-meet-space-oresttokovenko

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Setting up an ad-hoc video meeting and notifying participants normally requires switching between Google Meet and Gmail manually. This recipe automates the full flow: creating a Google Meet space with open access and distributing the join link by email in a few commands. ## Core Features & Use Cases - Meeting Space Creation: Calls the Google Meet API through the gws CLI to create a space with OPEN access type and returns the meeting URI. - Link Distribution: Sends the meeting URI to recipients via Gmail using the gws gmail send command. - Use Case: A team lead needs to spin up a quick sync meeting. The recipe creates the Meet space, extracts the join link, and emails it to [email protected] in one workflow. ## Quick Start Create a Google Meet space with open access and email the join link to my team.

Frequently Asked Questions about recipe-create-meet-space

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a Google Meet space from the command line?

Use the gws CLI with the meet spaces create command, passing a JSON config such as {"config": {"accessType": "OPEN"}}. The response contains the meeting URI, which you can copy and share with participants.

How do I send a Google Meet link by email automatically?

After creating the meeting space, use gws gmail +send with the --to, --subject, and --body flags, embedding the meeting URI in the body. This recipe chains both commands into a single workflow.

What prerequisites are needed to run this Google Meet recipe?

You need the gws CLI binary installed and two dependent skills loaded: gws-meet for the Meet API calls and gws-gmail for sending email. Without these, the recipe steps cannot execute.

What does the OPEN access type mean for a Google Meet space?

The OPEN access type in the space config allows participants to join the meeting without restrictive entry controls. It is set in the JSON payload passed to the gws meet spaces create command.

Can I send the meeting link to a different recipient than [email protected]?

Yes, the recipient address in the gws gmail +send command is a parameter you can change. Replace [email protected] with any email address or distribution list you want to notify.