---
name: Google Docs Reader
slug: google-docs-reader
category: Automation
description: Google Docs Reader downloads publicly shared Google Docs as full text with curl so you can read them locally. Use it when a doc is available by link and you need the complete contents instead of a summary.
github: "https://github.com/ykdojo/safeclaw/tree/main/setup/skills/gdoc"
language: HTML
stars: 183
forks: 21
install: "npx degit https://github.com/ykdojo/safeclaw/tree/main/setup/skills/gdoc ~/.claude/skills/gdoc"
installs_to: ~/.claude/skills/gdoc
source_path: setup/skills/gdoc/SKILL.md
collection_size: 3
category_size: 2032
collection_url: "https://dirskills.com/collections/ykdojo/safeclaw"
added: 2026-09-06T05:20:58.786Z
last_synced: 2026-09-06T05:20:58.786Z
canonical_url: "https://dirskills.com/skills/google-docs-reader"
---

# Google Docs Reader

Google Docs Reader downloads publicly shared Google Docs as full text with curl so you can read them locally. Use it when a doc is available by link and you need the complete contents instead of a summary.

**Install:**

```bash
npx degit https://github.com/ykdojo/safeclaw/tree/main/setup/skills/gdoc ~/.claude/skills/gdoc
```

## README

# Google Docs Reader

To read a Google Doc:

1. Replace `/edit` (or any suffix after the doc ID) with `/mobilebasic`
2. **ALWAYS use curl, NOT WebFetch.** WebFetch summarizes/truncates content. curl gets the full document:

```bash
curl -sL 'https://docs.google.com/document/d/DOC_ID/mobilebasic' > /tmp/doc.txt
```

3. Read the downloaded file with the Read tool
