Home / cursor / plugins · third_party/google-docs/skills/google-docs/SKILL.md · GitHub

google-docs skillA

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
…

Read the whole file at its exact version.

How to install

Latest version
mdr add cursor/plugins/google-docs@git:20260922.e2ad3f2
Exact content
mdr add cursor/plugins/google-docs@sha256:f8f7f49f8c1ada2d

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.

Badge

mdr badge

[![mdr](https://markdownregistry.com/badge/art_cjfrpswpkrvdpzzc.svg)](https://markdownregistry.com/a/art_cjfrpswpkrvdpzzc)

1 badge views in 30 days

Versions

versioncommittedcommitsizeaudit
git:20260922.e2ad3f2 latest2026-09-22 e2ad3f2 6,158 BA view · diff
git:20260918.ea171d62026-09-18 ea171d6 3,538 BA view

Audit of the latest version

A  17 of 17 checks passed. Deterministic, no model, same answer every run.
  • pass: Frontmatter block present
  • pass: Frontmatter declares a name
  • pass: Frontmatter declares a description
  • pass: Size between 200 bytes and 200 KB (6158 bytes)
  • pass: No zero-width or bidi control characters
  • pass: No instruction hidden inside an HTML comment
  • pass: No link to an exfiltration or paste host
  • pass: No credential-shaped string
  • pass: No instruction to send local credentials anywhere
  • pass: No text hidden with inline styles
  • pass: No prompt-injection phrasing
  • pass: No curl or wget piped into a shell
  • pass: No recursive delete of root, home or parent
  • pass: No instruction to read or print local credentials
  • pass: No base64 blob over 200 characters
  • pass: No link to a raw IP address
  • pass: No script tag

Source

GitHub

cursor/plugins · 8,499 stars · license none · pushed 2026-09-23 · branch main

API

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.

More from cursor/plugins

advisor skill
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…
git:20260904.93b00b8 · audit A · 8,499 stars
check-agent-compatibility skill
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.
git:20260325.f006be7 · audit A · 8,499 stars
cli-for-agents skill
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…
git:20260326.26a1497 · audit A · 8,499 stars
continual-learning skill
cursor/plugins · continual-learning/skills/continual-learning/SKILL.md · Orchestrate continual learning by delegating transcript mining and AGENTS.md updates to `agents-memory-updater`.
git:20260313.ac93d26 · audit A · 8,499 stars
create-plugin-scaffold skill
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…
git:20260225.82d7c79 · audit A · 8,499 stars
review-plugin-submission skill
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…
git:20260211.97128c0 · audit A · 8,499 stars
cursor-sdk skill
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`)…
git:20260428.61d06b7 · audit A · 8,499 stars
check-compiler-errors skill
cursor/plugins · cursor-team-kit/skills/check-compiler-errors/SKILL.md · Run compile and type-check commands and report failures
git:20260217.b21ab16 · audit A · 8,499 stars
control-cli skill
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…
git:20260430.d018dc4 · audit A · 8,499 stars
control-ui skill
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…
git:20260430.d018dc4 · audit B · 8,499 stars
deslop skill
cursor/plugins · cursor-team-kit/skills/deslop/SKILL.md · Remove AI-generated code slop and clean up code style
git:20260217.b21ab16 · audit A · 8,499 stars
fix-ci skill
cursor/plugins · cursor-team-kit/skills/fix-ci/SKILL.md · Find failing PR checks, inspect logs or external check links, and apply focused fixes
git:20260430.bca6129 · audit A · 8,499 stars

Every file in cursor/plugins

Other files named google-docs

google-docs skill
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…
v1.0 · audit A · 426 stars
google-docs skill
zapier/connectors · apps/google-docs/SKILL.md · Agent-callable Google Docs tools — create, read, export, and find documents; edit text, formatting, images, and page…
git:20260814.c8f6d94 · audit A · 174 stars
google-docs skill
sfc-gh-eraigosa/dotfiles · ai/skills/gdocsintegration/SKILL.md · Integration for interacting with Google Docs and Google Workspace using the 'gws' CLI.
git:20260909.0495a9a · audit A · 48 stars
google-docs skill
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…
v1.0 · audit A · 17 stars

Browse by kind, by grade A, or by owner.