
Recipe Create Meet Space
Spin up an open Google Meet room and email the join link to your team from the terminal without opening the Calendar UI.
Overview
Recipe Create Meet Space is an agent skill for the Build phase that creates an open Google Meet space via gws and emails the join link with gws-gmail.
Install
npx skills add https://github.com/googleworkspace/cli --skill recipe-create-meet-spaceWhat is this skill?
- 3-step recipe: create open-access Meet space, copy meeting URI, send link via gws gmail +send
- Depends on gws binary plus gws-meet and gws-gmail skills loaded first
- Uses `gws meet spaces create` with JSON config accessType OPEN
- OpenClaw recipe metadata: scheduling domain, version 0.22.5
- Prerequisite skills: gws-meet and gws-gmail
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 need a shareable Meet link fast but do not want to leave the terminal or manually copy URLs into email.
Who is it for?
Builders standardized on googleworkspace/cli gws with Meet and Gmail skills already configured for team@ or client distribution lists.
Skip if: Teams without gws, Google Workspace admin blocks on open Meet spaces, or flows that require Calendar invites with attendees instead of a plain email body.
When should I use this skill?
You need to create a Google Meet meeting space and share the join link via email using the gws CLI stack.
What do I get? / Deliverables
You get an open-access meeting URI and a sent email with the join link after executing the Meet-then-Gmail recipe in order.
- Created Meet space with meeting URI
- Sent email containing the join link
Recommended Skills
Journey fit
Meeting-space creation is an integration recipe that wires Google Meet and Gmail together during product or ops setup. Canonical shelf is integrations because the skill is a chained gws CLI workflow across Meet and Gmail APIs.
How it compares
Use as a documented recipe chain on top of gws-meet and gws-gmail, not as a single-purpose MCP server or Calendar UI replacement.
Common Questions / FAQ
Who is recipe-create-meet-space for?
Solo and indie developers who automate Google Workspace from the CLI and want agents to run a fixed Meet-plus-email playbook.
When should I use recipe-create-meet-space?
Use it in Build → integrations when you are wiring scheduling into scripts or agent workflows, or in Operate when you routinely spin up ad-hoc meetings and notify a distribution list from the terminal.
Is recipe-create-meet-space safe to install?
It orchestrates real Meet creation and outbound email; review the Security Audits panel on this page and confirm Workspace scopes and recipient addresses before running in production.
SKILL.md
READMESKILL.md - Recipe Create Meet Space
# 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'`