Agent Skills
› googleworkspace/cli
› recipe-create-meet-space
recipe-create-meet-space
GitHub该技能用于创建 Google Meet 会议空间并自动将加入链接通过电子邮件发送给指定团队成员,实现快速发起和共享会议邀请。
Trigger Scenarios
需要创建新的视频会议并通知参与者
自动化发送会议邀请邮件
Install
npx skills add googleworkspace/cli --skill recipe-create-meet-space -g -y
SKILL.md
Frontmatter
{
"name": "recipe-create-meet-space",
"metadata": {
"version": "0.22.5",
"openclaw": {
"domain": "scheduling",
"category": "recipe",
"requires": {
"bins": [
"gws"
],
"skills": [
"gws-meet",
"gws-gmail"
]
}
}
},
"description": "Create a Google Meet meeting space and share the join link."
}
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'
Version History
- a3768d0 Current 2026-08-20 07:26


