google-docs is agent-read markdown (skill) from cursor/plugins: Author and edit Google Docs with the google-docs tools - structured writing, character and paragraph styling, lists, tables, images, headers/footers. Use when creating a formatted document, editing document content, or applying styles..
Indexed from public GitHub and served as immutable, content-addressed versions. Install it pinned to an exact SHA-256 with the mdr CLI, and every file is verified against the hash recorded here before it reaches your agent. The deterministic audit below grades the latest version, and the same file always earns the same grade.
What the file says
# Google Docs authoring
## Locate text, never compute indexes (the #1 source of bugs)
Docs edits address zero-based UTF-16 index ranges within one tab, and every
write SHIFTS later indexes. Guessed or stale indexes silently hit the wrong
paragraphs - the classic symptom is two lists merging into one continued
numbering. The tools remove the need for index math:
- `find_text` returns FRESH `{start, end}` ranges for exact text - the
direct source of indexes for `apply_text_style`, `apply_paragraph_style`,
`delete_content`, and `set_paragraph_format`. Locate, then edit, in
back-to-back calls.
- `create_list` takes `firstItemText`/`lastItemText` anchors and resolves
the range itself: name the first and last item paragraphs and no index
ever touches your hands. Use one `create_list` per list with the right
preset (BULLET_* for bullets, NUMBERED_* for numbers); never stretch one
call across two visually separate lists.
When a range must come from structure instead of a phrase (styling a whole
paragraph, addressing a table), read it from `read_document` elements: a
paragraph's `{start, end}` is the range for paragraph-level tools. END IS
…
Pin to a label to follow the author's releases, or to a sha256 to freeze the exact bytes forever. Either way the resolved hash is written to mdr.lock, and mdr install reproduces it on any machine.
GET https://markdownregistry.com/api/v1/artifacts/art_cjfrpswpkrvdpzzc
GET https://markdownregistry.com/api/v1/resolve?ref=cursor/plugins/google-docs
GET https://markdownregistry.com/api/v1/blob/f8f7f49f8c1ada2d7fe22747075cc923fed975b466ec98c2fc758e99591193f2
Your agent does the legwork. You hear about the deals worth your word. Hand yours the standing instructions at modelranch.com and it joins the network that reads files like this one.
cursor/plugins · advisor/skills/advisor/SKILL.md · Advisor mode. Consult a stronger (or different) model at key checkpoints: before major decisions, when stuck on an…
cursor/plugins · agent-compatibility/skills/check-agent-compatibility/SKILL.md · Run the full repository compatibility pass: scanner score, startup path, validation loop, and docs reliability.
cursor/plugins · cli-for-agent/skills/cli-for-agents/SKILL.md · Designs or reviews CLIs so coding agents can run them reliably: non-interactive flags, layered --help with examples…
cursor/plugins · create-plugin/skills/create-plugin-scaffold/SKILL.md · Create a new Cursor plugin scaffold with a valid manifest, component directories, and marketplace wiring. Use when…
cursor/plugins · create-plugin/skills/review-plugin-submission/SKILL.md · Audit a Cursor plugin for marketplace readiness. Use when validating manifests, component metadata, discovery paths…
cursor/plugins · cursor-sdk/skills/cursor-sdk/SKILL.md · Guide users building apps, scripts, CI pipelines, or automations on top of the Cursor TypeScript SDK (`@cursor/sdk`)…
cursor/plugins · cursor-team-kit/skills/control-cli/SKILL.md · Build or adapt a local harness to drive, inspect, and profile an interactive CLI or TUI without external services. Use…
cursor/plugins · cursor-team-kit/skills/control-ui/SKILL.md · Build or adapt a local browser/CDP harness to drive and inspect a web, IDE, or Electron UI. Use for local UI…
sanjay3290/ai-skills · skills/google-docs/SKILL.md · Interact with Google Docs - create documents, search by title, read content, and edit text.
Use when user asks to…
sfc-gh-eraigosa/dotfiles · ai/skills/gdocsintegration/SKILL.md · Integration for interacting with Google Docs and Google Workspace using the 'gws' CLI.
acedatacloud/skills · skills/google-docs/SKILL.md · Read and edit Google Docs via the Docs v1 REST API. Use when the user mentions a Google Doc, reading a document's text…