documents

Google Docs Documents

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "documents" with this command: npx skills add tryshift-sh/skills-store/tryshift-sh-skills-store-documents

Google Docs Documents

Use this skill to create a Google Doc, inspect an existing document, append text, replace text, or share a document.

When to use

  • create a new Google Doc

  • list recent Google Docs documents

  • read document structure and metadata

  • append text to the end of a document

  • replace matching text across a document

  • share a document with another person

Authentication

This skill uses the connected google-docs provider credential for the current agent.

Invocation

Call through Shift's Skill Router:

curl -X POST "$SHIFT_LOCAL_GATEWAY/skill-router/invoke"
-H "Content-Type: application/json"
-d '{ "skillProvider": "google-docs", "skill": "documents", "action": "create", "input": { "title": "Launch Notes" } }'

Examples

Create a document:

{ "skillProvider": "google-docs", "skill": "documents", "action": "create", "input": { "title": "Launch Notes" } }

Get a document:

{ "skillProvider": "google-docs", "skill": "documents", "action": "get", "input": { "documentId": "DOCUMENT_ID" } }

List documents:

{ "skillProvider": "google-docs", "skill": "documents", "action": "list", "input": { "pageSize": 10 } }

Append text:

{ "skillProvider": "google-docs", "skill": "documents", "action": "append-text", "input": { "documentId": "DOCUMENT_ID", "text": "\n\nWeekly update:\n- Product launch on track\n- Need final review by Friday" } }

Replace text:

{ "skillProvider": "google-docs", "skill": "documents", "action": "replace-text", "input": { "documentId": "DOCUMENT_ID", "containsText": "{{status}}", "replaceText": "On track", "matchCase": true } }

Share a document:

{ "skillProvider": "google-docs", "skill": "documents", "action": "share", "input": { "documentId": "DOCUMENT_ID", "type": "user", "role": "writer", "emailAddress": "collab@example.com" } }

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

post

No summary provided by upstream source.

Repository SourceNeeds Review
General

square-post

No summary provided by upstream source.

Repository SourceNeeds Review
General

retweet

No summary provided by upstream source.

Repository SourceNeeds Review