PluginBench
Skill
Pass
Audit score 90

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
Prerequisites
  • gws-meet skill installed
  • gws-gmail skill installed
  • Google Workspace CLI (gws) available
Claude Code
Cursor
Windsurf
Cline

How to use recipe-create-meet-space

  1. 1.Run: gws meet spaces create --json '{"config": {"accessType": "OPEN"}}'
  2. 2.Copy the meeting URI from the response
  3. 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

Good for
  • 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
Who it's for
  • Team leads coordinating meetings
  • Scheduling administrators
  • Anyone automating meeting setup workflows

recipe-create-meet-space FAQ

What skills do I need to use this recipe?

You must have gws-meet and gws-gmail skills installed before running this recipe.

Can I customize who receives the meeting link?

Yes, modify the --to parameter in the gws gmail +send command to specify different recipients or distribution lists.

Is the meeting space open to anyone?

Yes, the recipe creates the space with accessType set to OPEN, allowing anyone with the link to join.

Can I change the email subject or body?

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

  1. Create meeting space: gws meet spaces create --json '{"config": {"accessType": "OPEN"}}'
  2. Copy the meeting URI from the response
  3. Email the link: gws gmail +send --to team@company.com --subject 'Join the meeting' --body 'Join here: MEETING_URI'