agentio-gslides

Manage Google Slides presentations through the agentio CLI commands.

2|Updated Jan 3, 2026
One-click install
npx skills add https://github.com/plosson/agentio --skill agentio-gslides-plosson
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agentio-gslides
Source: https://github.com/plosson/agentio/tree/main/claude/skills/agentio-gslides
Command: npx skills add https://github.com/plosson/agentio --skill agentio-gslides-plosson

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Reading, exporting, and modifying Google Slides decks normally requires manual work in the browser or writing custom Slides API code. This Skill exposes the full presentation workflow as plain CLI commands that agents and CI pipelines can run directly. ## Core Features & Use Cases - List and Search: Find presentations with Drive query filters such as owner, name fragment, or modification date. - Read and Export: Extract slide text and speaker notes, or export decks to pptx, pdf, or odp formats. - Create, Copy, and Batch Update: Create blank presentations, duplicate decks into folders, and execute raw presentations.batchUpdate requests for full Slides API control. - Use Case: In a scheduled GitHub Actions job, export the latest Q4 review deck to PDF and post a summary of its slide text to Slack. ## Quick Start Use the agentio gslides skill to list my 10 most recent presentations and read the text of the first one.

Frequently Asked Questions about agentio-gslides

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I read Google Slides content from the command line?▼

Run agentio gslides get with a presentation ID or full URL to output all slide text and speaker notes. Use the --slide flag with a zero-based index to read only one specific slide.

How to export a Google Slides presentation to PDF or PowerPoint?▼

Use agentio gslides export with the presentation ID and an --output path. The --format flag accepts pptx (default), pdf, or odp for LibreOffice compatibility.

Can I search Google Slides by name or owner from a CLI?▼

Yes, agentio gslides list accepts a --query flag using Drive search syntax such as name contains 'Q4', 'me' in owners, or modifiedTime filters. Conditions can be combined with and/or operators.

Does agentio gslides support editing slides programmatically?▼

Yes, the batch subcommand executes raw presentations.batchUpdate requests supplied as inline JSON or a file. It accepts any Slides API Request object, such as createSlide with a predefined layout.

What are the limitations of the agentio gslides CLI?▼

High-level commands cover listing, reading, exporting, creating, and copying only. Any structural edits like inserting shapes or updating text require crafting raw batchUpdate JSON against the Slides API.