Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/mkbabb/googleapiutils2/claude-mdgit clone --depth 1 https://github.com/mkbabb/googleapiutils2What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.02143 | $0.02143 |
| Opus 5 | $0.01071 | $0.01071 |
| Sonnet 5 | $0.00429 | $0.00429 |
| Haiku 4.5 | $0.00214 | $0.00214 |
Grade A, and why
googleapiutils2 CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 282 lines — stays where its author put it; the contents beside it link to each section on GitHub.
googleapiutils2
Python wrapper for Google APIs: Drive, Sheets, Gmail, Admin, Groups, Geocoding.
Installation
pip install googleapiutils2
Requires Python ^3.12
File Tree
googleapiutils2/
├── __init__.py # Package exports
├── monitor.py # DriveMonitor, SheetsMonitor (change detection)
├── utils/ # Core infrastructure
│ ├── __init__.py # Utils exports
│ ├── drive.py # DriveBase, auth, exceptions, MIME utils
│ ├── decorators.py # retry, cache_with_stale_interval
│ ├── misc.py # GoogleMimeTypes, SCOPES, constants
│ └── utils.py # Throttler, hex_to_rgb, URL parsing
├── drive/ # Google Drive API
│ ├── __init__.py # Drive, Permissions exports
│ ├── drive.py # Drive class (upload, download, copy, list, etc.)
│ └── misc.py # Constants, pagination helpers
├── sheets/ # Google Sheets API
│ ├── __init__.py # Sheets, SheetsValueRange, SheetSlice exports
│ ├── sheets.py # Sheets class (CRUD, formatting, batching)
│ ├── sheets_value_range.py # Range wrapper with slice notation
│ ├── sheets_slice.py # Slice indexing implementation
│ └── misc.py # A1 notation, enums, constants
├── mail/ # Gmail API
│ ├── __init__.py # Mail export
│ └── mail.py # Mail class (send, draft, labels, messages)
├── admin/ # Google Workspace Admin API
│ ├── __init__.py # Admin export
│ └── admin.py # Admin class (user management)
├── groups/ # Google Groups API
│ ├── __init__.py # Groups export
│ ├── groups.py # Groups class (group/member management)
│ └── misc.py # Constants
└── geocode/ # Google Maps Geocoding API
├── __init__.py # Geocode export
├── geocode.py # Geocode class (address ↔ coordinates)
└── misc.py # TypedDicts, LocationType enum
test/ # Integration tests (live API)
├── conftest.py # Shared fixtures
├── drive/ # Drive tests
├── sheets/ # Sheets tests
└── geocode/ # Geocode tests
examples/ # Usage examples
├── drive_upload.py # Upload files/folders
├── sheets_crud.py # Sheet operations
├── mail.py # Send emails
├── monitor.py # Change detection
└── ...
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 282 lines · 2,143 tokens per session scan A a50fe572f5ee
googleapiutils2 CLAUDE.md is an instructions file published in the GitHub repository mkbabb/googleapiutils2 (5 stars, last pushed 9mo ago), licensed MIT. It adds 2,143 tokens to every session, about $0.0107 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
academic-research-skills CLAUDE.md
Instructions for YuanyuanMa03/academic-research-skills, covering claude.md, project overview, repository structure, development commands and validation (run before committing).
google-mcp CLAUDE.md
Instructions for quinnjr/google-mcp, covering claude.md, commands, architecture, entry & server and auth.
aquaregia AGENTS.md
Instructions for minorcell/aquaregia, covering claude.md, 1. think before coding, 2. simplicity first, 3. surgical changes and 4. goal-driven execution.
mcp-google-multi CLAUDE.md
Instructions for bakissation/mcp-google-multi, covering working on mcp-google-multi, project shape, adding a tool, adding a service and generated tools (layer 2).
notebooklm-mcp GEMINI.md
Instructions for m4yk3ldev/notebooklm-mcp, covering notebooklm mcp server - project context, project overview, key technologies, architecture and building and running.
devops-skills AGENTS.md
Instructions for arjunprabhulal/devops-skills, covering agents.md, what this repo is, the shape of every skill, rules and before committing.