recipe-create-meet-space
googleworkspace/cli
Create a Google Meet space and email the join link to participants.
What is recipe-create-meet-space?
This recipe creates a Google Meet meeting space with open access and automatically shares the join link via Gmail. Use it to quickly set up meetings and notify attendees in one workflow.
- Create a Google Meet conference space with open access configuration
- Extract the meeting URI from the created space
- Send the meeting link via Gmail to specified recipients
- Automate meeting setup and notification in a single recipe
How to install recipe-create-meet-space
npx skills add null --skill recipe-create-meet-space- gws-meet skill installed
- gws-gmail skill installed
- Google Workspace CLI (gws) available
How to use recipe-create-meet-space
- 1.Run: gws meet spaces create --json '{"config": {"accessType": "OPEN"}}'
- 2.Copy the meeting URI from the response
- 3.Run: gws gmail +send --to team@company.com --subject 'Join the meeting' --body 'Join here: MEETING_URI' (replace MEETING_URI with the actual URI)
Use cases
- Quickly schedule a team meeting and notify all participants by email
- Set up an open conference room for ad-hoc collaboration
- Create a meeting space and distribute the join link to a distribution list
- Automate meeting creation as part of a larger scheduling workflow
- Team leads coordinating meetings
- Scheduling administrators
- Anyone automating meeting setup workflows
recipe-create-meet-space FAQ
You must have gws-meet and gws-gmail skills installed before running this recipe.
Yes, modify the --to parameter in the gws gmail +send command to specify different recipients or distribution lists.
Yes, the recipe creates the space with accessType set to OPEN, allowing anyone with the link to join.
Yes, you can customize the --subject and --body parameters in the gws gmail +send command.
Full instructions (SKILL.md)
Source of truth, from googleworkspace/cli.
name: recipe-create-meet-space description: "Create a Google Meet meeting space and share the join link." metadata: version: 0.22.5 openclaw: category: "recipe" domain: "scheduling" requires: bins: - gws skills: - gws-meet - gws-gmail
Create a Google Meet Conference
PREREQUISITE: Load the following skills to execute this recipe:
gws-meet,gws-gmail
Create a Google Meet meeting space and share the join link.
Steps
- Create meeting space:
gws meet spaces create --json '{"config": {"accessType": "OPEN"}}' - Copy the meeting URI from the response
- Email the link:
gws gmail +send --to team@company.com --subject 'Join the meeting' --body 'Join here: MEETING_URI'
Related skills
More from googleworkspace/cli and the wider catalog.
gws-gmail
Send, read, and manage Gmail emails via Google Workspace CLI.
gws-drive
Manage Google Drive files, folders, and shared drives via CLI.
gws-docs
Read and write Google Docs via command line.
gws-calendar
Manage Google Calendar events, calendars, and access control via CLI.
gws-sheets
Read and write Google Sheets spreadsheets via CLI.
gws-gmail-send
Send emails via Gmail with attachments, CC/BCC, HTML support, and draft options.