Agent skill · Backend & API

google-docs-automation

Lightweight Google Docs integration with standalone OAuth authentication. No MCP server required.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill google-docs-automation --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Version: 1.0
Declared author: sanjay3290
Path: skills/google-docs-automation/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Google Docs Lightweight Google Docs integration with standalone OAuth authentication. No MCP server required. > **⚠️ Requires Google Workspace account.** Personal Gmail accounts are not supported. ## When to Use - You need to create, search, read, or edit Google Docs from local automation scripts. - The task involves document text extraction, append/insert operations, or content replacement in Workspace docs. - You want direct Docs automation without relying on an MCP server. ## First-Time Setup Authenticate with Google (opens browser): ```bash python scripts/auth.py login ``` Check authentication status: ```bash python scripts/auth.py status ``` Logout when needed: ```bash python scripts/auth.py logout ``` ## Commands All operations via `scripts/docs.py`. Auto-authenticates on first use if not logged in. ```bash # Create a new document python scripts/docs.py create "Meeting Notes" # Create a document with initial content python scripts/docs.py create "Project Plan" --content "# Overview\n\nThis is the project plan." # Find documents by title python scripts/docs.py find "meeting" --limit 10 # Get text content of a document python scripts/docs.py get-text 1BxiMVs0XRA5nFMdKvBdBZjgm

What's inside
Steps it walks through
  1. When to Use
  2. First-Time Setup
  3. Commands
  4. Document ID Format
  5. Token Management
  6. Limitations
Commands it runs
python scripts/auth.py login
python scripts/auth.py status
python scripts/auth.py logout
Create a new document
python scripts/docs.py create "Meeting Notes"
Create a document with initial content
python scripts/docs.py create "Project Plan" --content "# Overview\n\nThis is the project plan."
Find documents by title
python scripts/docs.py find "meeting" --limit 10
Get text content of a document
More from agentic-awesome-skills
All skills →
About this skill
What does the google-docs-automation skill do?

Lightweight Google Docs integration with standalone OAuth authentication. No MCP server required.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill google-docs-automation --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going