Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Read and write Google Slides presentations using the gws CLI's Slides API wrapper with batchUpdate and page operations.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: gws-slides3description: "Google Slides: Read and write presentations."4metadata:5version: 0.22.56openclaw:7category: "productivity"8requires:9bins:10- gws11cliHelp: "gws slides --help"12---1314# slides (v1)1516> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.1718```bash19gws slides <resource> <method> [flags]20```2122## API Resources2324### presentations2526- `batchUpdate` — Applies one or more updates to the presentation. Each request is validated before being applied. If any request is not valid, then the entire request will fail and nothing will be applied. Some requests have replies to give you some information about how they are applied. Other requests do not need to return information; these each return an empty reply. The order of replies matches that of the requests.27- `create` — Creates a blank presentation using the title given in the request. If a `presentationId` is provided, it is used as the ID of the new presentation. Otherwise, a new ID is generated. Other fields in the request, including any provided content, are ignored. Returns the created presentation.28- `get` — Gets the latest version of the specified presentation.29- `pages` — Operations on the 'pages' resource3031## Discovering Commands3233Before calling any API method, inspect it:3435```bash36# Browse resources and methods37gws slides --help3839# Inspect a method's required params, types, and defaults40gws schema slides.<resource>.<method>41```4243Use `gws schema` output to build your `--params` and `--json` flags.4445