productivity
Google Slides CLI for AI Agents
Use the Google Slides CLI from KosmoKrator to call Google Slides tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.Google Slides CLI Setup
Google Slides can be configured headlessly with `kosmokrator integrations:configure google-slides`.
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
# Configure and verify this integration.
kosmokrator integrations:configure google-slides --enable --read allow --write ask --json
kosmokrator integrations:doctor google-slides --json
kosmokrator integrations:status --json Credentials
Authentication type: Manual OAuth token oauth2_manual_token. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.
No credentials are required.
Command Patterns
The generic command is stable across every integration. The provider shortcut is shorter for humans.
kosmo integrations:call google-slides.google_slides_presentations_get '{}' --json kosmo integrations:google-slides google_slides_presentations_get '{}' --json Discovery
These commands return structured output for coding agents that need to inspect capabilities before choosing a function.
kosmo integrations:docs google-slides --json
kosmo integrations:docs google-slides.google_slides_presentations_get --json
kosmo integrations:schema google-slides.google_slides_presentations_get --json
kosmo integrations:search "Google Slides" --json
kosmo integrations:list --json Automation Contexts
The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.
CLI Functions
Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.
google-slides.google_slides_presentations_get
Presentations Get (GET /v1/presentations/{+presentationId}).
read - Parameters
- none
kosmo integrations:call google-slides.google_slides_presentations_get '{}' --json kosmo integrations:google-slides google_slides_presentations_get '{}' --json google-slides.google_slides_presentations_create
Presentations Create (POST /v1/presentations).
write - Parameters
- none
kosmo integrations:call google-slides.google_slides_presentations_create '{}' --json kosmo integrations:google-slides google_slides_presentations_create '{}' --json google-slides.google_slides_presentations_batch_update
Presentations Batch Update (POST /v1/presentations/{presentationId}:batchUpdate).
write - Parameters
- none
kosmo integrations:call google-slides.google_slides_presentations_batch_update '{}' --json kosmo integrations:google-slides google_slides_presentations_batch_update '{}' --json google-slides.google_slides_presentations_pages_get
Presentations Pages Get (GET /v1/presentations/{presentationId}/pages/{pageObjectId}).
read - Parameters
- none
kosmo integrations:call google-slides.google_slides_presentations_pages_get '{}' --json kosmo integrations:google-slides google_slides_presentations_pages_get '{}' --json google-slides.google_slides_presentations_pages_get_thumbnail
Presentations Pages Get Thumbnail (GET /v1/presentations/{presentationId}/pages/{pageObjectId}/thumbnail).
read - Parameters
- none
kosmo integrations:call google-slides.google_slides_presentations_pages_get_thumbnail '{}' --json kosmo integrations:google-slides google_slides_presentations_pages_get_thumbnail '{}' --json Function Schemas
Use these parameter tables when building CLI payloads without calling integrations:schema first.
google-slides.google_slides_presentations_get 0 parameters
kosmo integrations:schema google-slides.google_slides_presentations_get --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
google-slides.google_slides_presentations_create 0 parameters
kosmo integrations:schema google-slides.google_slides_presentations_create --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
google-slides.google_slides_presentations_batch_update 0 parameters
kosmo integrations:schema google-slides.google_slides_presentations_batch_update --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
google-slides.google_slides_presentations_pages_get 0 parameters
kosmo integrations:schema google-slides.google_slides_presentations_pages_get --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
google-slides.google_slides_presentations_pages_get_thumbnail 0 parameters
kosmo integrations:schema google-slides.google_slides_presentations_pages_get_thumbnail --json | Parameter | Type | Required | Description |
|---|---|---|---|
| No parameters. | |||
Permissions
Headless calls still follow the integration read/write permission policy. Configure read/write defaults with
integrations:configure. Add --force only for trusted automation that should bypass that policy.