gog

gog is a skill for Claude Code from HybridAIOne/hybridclaw. It costs 27 tokens per session (1,648 once invoked), scanned A, a copy of gog, MIT.

A command-line tool for Gmail, Google Calendar, Drive, Contacts, Sheets, and Docs. It lets an authenticated user work with Google Workspace from a terminal instead of the web interface.

In plain words
What is it for?
Use it for Gmail searches and sending, calendar and meeting tasks, Drive and Contacts lookups, and Docs, Sheets, Forms, Slides, and Tasks operations.
Why use it?
It provides repeatable commands for searching mail, handling files, managing events, and reading or editing Workspace data.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Good fit Use it for Gmail searches and sending, calendar and meeting tasks, Drive and Contacts lookups, and Docs, Sheets, Forms, Slides, and Tasks operations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hybridaione/hybridclaw/gog
Install

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.

Any agent
npx skills add HybridAIOne/hybridclaw --skill gog
Clone the repo
git clone --depth 1 https://github.com/HybridAIOne/hybridclaw

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for gog

README.md
[![agentmods](https://agentmods.dev/badge/skills/hybridaione/hybridclaw/gog/github.svg)](https://agentmods.dev/skills/hybridaione/hybridclaw/gog)
Your own site
<a href="https://agentmods.dev/skills/hybridaione/hybridclaw/gog"><img src="https://agentmods.dev/badge/skills/hybridaione/hybridclaw/gog/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for gog

Your own site · 80×15
<a href="https://agentmods.dev/skills/hybridaione/hybridclaw/gog"><img src="https://agentmods.dev/badge/skills/hybridaione/hybridclaw/gog.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,648 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 81% copy Near-identical to another mod in the catalogue.
Token cost

What 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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00027 $0.01648
Opus 5 $0.00014 $0.00824
Sonnet 5 $0.00005 $0.00330
Haiku 4.5 $0.00003 $0.00165

Measured 11d ago against content hash 1fc21a2be4ea, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

gog 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 11d ago.

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.

Origin

This is a copy

81% identical to gog — 73 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/gog/SKILL.md · 132 lines

How it starts

The opening of the file, as written. The whole thing — 132 lines — stays where its author put it; the contents beside it link to each section on GitHub.

gog

Use gog for Gmail/Calendar/Drive/Contacts/Sheets/Docs. Requires OAuth setup.

Setup (once)

hybridclaw skill install gog gog
hybridclaw auth login google --client-id <id> --client-secret <secret> --account [email protected]
hybridclaw auth status google

HybridClaw stores the Google OAuth client secret and refresh token in encrypted runtime secrets, mints a short-lived access token on the host, and injects only GOG_ACCESS_TOKEN, GOOGLE_WORKSPACE_CLI_TOKEN, and GOG_ACCOUNT into the agent runtime for Google Workspace CLIs.

Common commands

gog supports the commands: calendar, chat, contacts, docs, drive, forms, gmail, groups, people, slides, tasks, sheets

  • Help about a gog command: gog <command> --help

  • Gmail search: gog gmail search 'newer_than:7d' --max 10

  • Gmail messages search (per email, ignores threading): gog gmail messages search "in:inbox from:ryanair.com" --max 20 --account [email protected]

  • Gmail send (plain): gog gmail send --to [email protected] --subject "Hi" --body "Hello"

  • Gmail send (multi-line): gog gmail send --to [email protected] --subject "Hi" --body-file ./message.txt

  • Gmail send (stdin): gog gmail send --to [email protected] --subject "Hi" --body-file -

  • Gmail send (HTML): gog gmail send --to [email protected] --subject "Hi" --body-html "<p>Hello</p>"

  • Gmail draft: gog gmail drafts create --to [email protected] --subject "Hi" --body-file ./message.txt

  • Gmail send draft: gog gmail drafts send <draftId>

  • Gmail reply: gog gmail send --to [email protected] --subject "Re: Hi" --body "Reply" --reply-to-message-id <msgId>

  • Calendar search events: gog calendar search <calendarId> "Meeting" --from <iso> --to <iso> --max 10

  • Calendar list events: gog calendar events <calendarId> --from <iso> --to <iso>

  • Calendar create event: gog calendar create <calendarId> --summary "Title" --from <iso> --to <iso>

  • Calendar create with attendees: gog calendar create <calendarId> --summary "Title" --from <iso> --to <iso> --attendees [email protected],[email protected] --send-updates all

  • Calendar create with color: gog calendar create <calendarId> --summary "Title" --from <iso> --to <iso> --event-color 7

  • Calendar update event: gog calendar update <calendarId> <eventId> --summary "New Title" --event-color 4

  • Calendar show colors: gog calendar colors

  • Drive search: gog drive search "query" --max 10

  • Contacts: gog contacts list --max 20

  • Sheets get: gog sheets get <sheetId> "Tab!A1:D10" --json

  • Sheets update: gog sheets update <sheetId> "Tab!A1:B2" --values-json '[["A","B"],["1","2"]]' --input USER_ENTERED

  • Sheets append: gog sheets append <sheetId> "Tab!A:C" --values-json '[["x","y","z"]]' --insert INSERT_ROWS

  • Sheets clear: gog sheets clear <sheetId> "Tab!A2:Z"

  • Sheets metadata: gog sheets metadata <sheetId> --json

  • Docs export: gog docs export <docId> --format txt --out /tmp/doc.txt

  • Docs cat: gog docs cat <docId>

Read the full file on GitHub · 132 lines

Changes

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.

  1. 11d ago First seen · 132 lines · 27 tokens per session scan A 1fc21a2be4ea

Subscribe to this mod's changes

gog is a skill published in the GitHub repository HybridAIOne/hybridclaw (132 stars, last pushed today), licensed MIT. It adds 27 tokens to every session and 1,648 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 81% identical to gog, differing in 73 lines, and is treated as a copy.