Agent Skills
› googleworkspace/cli
› recipe-create-presentation
recipe-create-presentation
GitHub用于通过命令行工具创建新的 Google Slides 演示文稿,添加初始幻灯片标题,并根据提供的 ID 将文件权限共享给指定团队成员。
触发场景
需要新建 Google Slides 演示文稿
需要将已创建的演示文稿分享给团队或特定用户
安装
npx skills add googleworkspace/cli --skill recipe-create-presentation -g -y
SKILL.md
Frontmatter
{
"name": "recipe-create-presentation",
"metadata": {
"version": "0.22.5",
"openclaw": {
"domain": "productivity",
"category": "recipe",
"requires": {
"bins": [
"gws"
],
"skills": [
"gws-slides"
]
}
}
},
"description": "Create a new Google Slides presentation and add initial slides."
}
Create a Google Slides Presentation
PREREQUISITE: Load the following skills to execute this recipe:
gws-slides
Create a new Google Slides presentation and add initial slides.
Steps
- Create presentation:
gws slides presentations create --json '{"title": "Quarterly Review Q2"}' - Get the presentation ID from the response
- Share with team:
gws drive permissions create --params '{"fileId": "PRESENTATION_ID"}' --json '{"role": "writer", "type": "user", "emailAddress": "team@company.com"}'
版本历史
- a3768d0 当前 2026-08-20 07:26


