Agent Skills
› googleworkspace/cli
› recipe-create-meet-space
recipe-create-meet-space
GitHub自动化创建 Google Meet 会议空间并发送加入链接邮件,简化协作流程。
触发场景
需要快速创建视频会议时
需向团队批量发送会议邀请时
安装
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'
版本历史
- a3768d0 当前 2026-08-20 07:26


