google-drive-comments

google-drive-comments is a skill for Codex from fanfan-de/anybox. It costs 55 tokens per session (882 once invoked), scanned A, original, MIT.

A guide for adding, replying to, and resolving comments on Google Drive files, including Docs, Sheets, and Slides. It emphasizes giving enough location detail for people to find each comment.

In plain words
What is it for?
Use it to review files, leave comments on specific content, respond to comment threads, and resolve finished discussions.
Why use it?
Comments created through an API may not attach visibly to the exact text or cell, so clear location evidence prevents confusion.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it to review files, leave comments on specific content, respond to comment threads, and resolve finished discussions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/fanfan-de/anybox/google-drive-comments
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 fanfan-de/anybox --skill google-drive-comments
Clone the repo
git clone --depth 1 https://github.com/fanfan-de/anybox

Made for: Codex.

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 google-drive-comments

README.md
[![agentmods](https://agentmods.dev/badge/skills/fanfan-de/anybox/google-drive-comments/github.svg)](https://agentmods.dev/skills/fanfan-de/anybox/google-drive-comments)
Your own site
<a href="https://agentmods.dev/skills/fanfan-de/anybox/google-drive-comments"><img src="https://agentmods.dev/badge/skills/fanfan-de/anybox/google-drive-comments/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 google-drive-comments

Your own site · 80×15
<a href="https://agentmods.dev/skills/fanfan-de/anybox/google-drive-comments"><img src="https://agentmods.dev/badge/skills/fanfan-de/anybox/google-drive-comments.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 882 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found 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.00055 $0.00882
Opus 5 $0.00028 $0.00441
Sonnet 5 $0.00011 $0.00176
Haiku 4.5 $0.00006 $0.00088

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

Security

Grade A, and why

google-drive-comments 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 9d 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.

plugins/Anybox-Plugins/google-drive/skills/google-drive-comments/SKILL.md · 47 lines

How it starts

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

Google Drive Comments

Use this skill for comment workflows in the unified Google Drive plugin. Drive comments can apply to Docs, Sheets, Slides, and generic Drive files, but API-created comments may appear unanchored in the Google editor UI. Every new top-level comment must therefore include enough surface-specific evidence for the reader to find the target without relying on native UI anchoring.

Workflow

  1. Ground the target file first.
  • If the user did not provide an exact file URL or ID, search Drive, list recent files, list folders, or read metadata until the target file is unambiguous.
  • Identify whether the file is a Google Doc, Sheet, Slides deck, or generic Drive file before drafting comments.
  1. Read the surface that will be commented on.
  • For Docs or text-like files, read the document text around each likely target.
  • For Sheets, read spreadsheet metadata first, then read the specific sheet tabs and ranges that may receive comments.
  • For Slides, read the presentation outline or text first, then read specific slides or thumbnails when visual context is needed.
  • Do not guess a target quote, slide number, sheet name, or cell range from memory or search snippets.
  1. Draft all intended comment updates before writing.
  • Prefer one bulk_update_file_comments call for all creates, replies, and resolves in the same user request.
  • Keep the batch to the action limit exposed by the tool. If the request needs more comments than the limit, ask before splitting into another batch.
  • For replies and resolves, use existing comment IDs from the live comment thread data.
  1. Attach surface-specific evidence to every new top-level comment.
  • The comment body must explicitly name or quote the target evidence, because the Google editor UI may not show API-created anchors.
  • Docs or text-like files: include quoted_text with the exact sentence, phrase, heading, or nearby text the comment refers to. Also quote that same text in the comment body when the critique would otherwise say "this sentence" or "this paragraph."
  • Sheets: include sheet_cell_range with the sheet name and A1 cell or range, such as Budget!C12 or Pipeline!A2:D10. Also name that sheet and range in the comment body, and include quoted_text when a displayed value, header, formula, or label would make the target clearer.
  • Slides: include slide_number. Also name that slide number in the comment body, and include quoted_text when commenting on a title, bullet, label, chart text, or other visible slide text.
  • Generic Drive files: if no structured surface exists, make the comment content explicitly name the file-level, page-level, timestamp-level, or section-level evidence it refers to.

Read the full file on GitHub · 47 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 47 lines · 55 tokens per session scan A a3077375a8f7

Subscribe to this mod's changes

google-drive-comments is a skill published in the GitHub repository fanfan-de/anybox (57 stars, last pushed 1mo ago), licensed MIT. It adds 55 tokens to every session and 882 once invoked, about $0.0003 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-09-03.