Cli recipe-create-presentation

Create a new Google Slides presentation and add initial slides.

install
source · Clone the upstream repo
git clone https://github.com/googleworkspace/cli
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/googleworkspace/cli "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/recipe-create-presentation" ~/.claude/skills/googleworkspace-cli-recipe-create-presentation && rm -rf "$T"
manifest: skills/recipe-create-presentation/SKILL.md
source content

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

  1. Create presentation:
    gws slides presentations create --json '{"title": "Quarterly Review Q2"}'
  2. Get the presentation ID from the response
  3. Share with team:
    gws drive permissions create --params '{"fileId": "PRESENTATION_ID"}' --json '{"role": "writer", "type": "user", "emailAddress": "team@company.com"}'