Agent Skills
› googleworkspace/cli
› recipe-create-presentation
recipe-create-presentation
GitHub创建Google Slides演示文稿并添加初始幻灯片,包括设置标题和共享权限。
Trigger Scenarios
需要创建新的Google Slides演示文稿
需要为团队共享演示文稿
Install
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"}'
Version History
- a3768d0 Current 2026-08-20 07:26


