What problem does it solve? Working with Google Docs from scripts, CI pipelines, or LLM agents normally requires writing OAuth flows and Docs API client code. This Skill exposes document export, creation, listing, and raw batchUpdate operations as plain CLI commands that agents and shell scripts can call directly. ## Core Features & Use Cases - Read and Export Documents: Export any Google Doc as Markdown to stdout or a file, or as .docx, using a document ID or full URL. - Create Documents from Markdown: Create new Google Docs from inline Markdown, piped stdin, or into a specific Drive folder. - Inspect Structure and Tabs: Dump the full Docs API JSON representation, list document tabs, and extract body indices for precise edits. - Raw batchUpdate Escape Hatch: Execute arbitrary documents.batchUpdate requests (inline JSON or from a file) for formatting, insertion, and multi-tab edits. - Use Case: An agent in a GitHub Actions workflow reads a spec document as Markdown, generates a summary, and creates a new Google Doc with the results inside a shared Drive folder. ## Quick Start Use the agentio gdocs skill to export the Google Doc at this URL as Markdown and print it to stdout.