From docs-skills
Read a Google Docs document, Google Slides presentation, or Google Sheets spreadsheet and output as Markdown or CSV. Use this skill when asked to read, fetch, import, or convert a Google Doc, Google Slides, or Google Sheets URL.
How this skill is triggered — by the user, by Claude, or both
Slash command
/docs-skills:docs-convert-gdoc-mdclaude-haiku-4-5@20251001This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Export Google content using the `gcloud` CLI for authentication:
Export Google content using the gcloud CLI for authentication:
.md).md) via PPTX with slide titles, bullet points, tables, and speaker notes.csv)gcloud CLI is installedgcloud auth login --enable-gdrive-accesspython-pptx is installed for Slides export (python3 -m pip install python-pptx)The script is at ${CLAUDE_SKILL_DIR}/scripts/gdoc2md.py.
Always quote the URL and output file arguments:
uv run --script ${CLAUDE_SKILL_DIR}/scripts/gdoc2md.py -- [--comments] [--include-resolved] "<url>" ["<output_file>"]
/document/d/ → Google Docs → Markdown/presentation/d/ → Google Slides → Markdown (via PPTX)/spreadsheets/d/ → Google Sheets → CSV<id>.md or <id>.csv.Use --comments to pull comment threads from the document and insert them as Markdown footnotes:
uv run --script ${CLAUDE_SKILL_DIR}/scripts/gdoc2md.py -- --comments "<google-doc-url>"
--include-resolved to include them.--comments flag only applies to Google Docs. The script ignores it for Slides and Sheets.gcloud auth login --enable-gdrive-access.python-pptx not installed. Tell the user to run python3 -m pip install python-pptx.npx claudepluginhub opendatahub-io/docs-skills --plugin docs-skillsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.