Skip to main content
ClaudeWave
Skill176 estrellas del repoactualizado 3d ago

gdoc

This Claude Code skill reads publicly shared Google Docs by converting the edit URL to the mobilebasic endpoint and downloading the full content via curl, which preserves complete text unlike WebFetch. Use this when you need to retrieve and process the entire contents of a shared Google Doc without truncation or summarization.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/ykdojo/safeclaw /tmp/gdoc && cp -r /tmp/gdoc/setup/skills/gdoc ~/.claude/skills/gdoc
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# 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