Claude Agent Skill · by Googleworkspace

Gws Docs Write

The gws-docs-write skill appends plain text to the end of a Google Docs document using the Google Workspace CLI, requiring only a document ID and the text conte

Install
Terminal · npx
$npx skills add https://github.com/googleworkspace/cli --skill gws-docs-write
Works with Paperclip

How Gws Docs Write fits into a Paperclip company.

Gws Docs Write drops into any Paperclip agent that handles this kind of work. Assign it to a specialist inside a pre-configured PaperclipOrg company and the skill becomes available on every heartbeat — no prompt engineering, no tool wiring.

S
SaaS FactoryPaired

Pre-configured AI company — 18 agents, 18 skills, one-time purchase.

$27$59
Explore pack
Source file
SKILL.md50 lines
Expand
---name: gws-docs-writedescription: "Google Docs: Append text to a document."metadata:  version: 0.22.5  openclaw:    category: "productivity"    requires:      bins:        - gws    cliHelp: "gws docs +write --help"--- # docs +write > **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it. Append text to a document ## Usage ```bashgws docs +write --document <ID> --text <TEXT>``` ## Flags | Flag | Required | Default | Description ||------|----------|---------|-------------|| `--document` | ✓ | — | Document ID || `--text` | ✓ | — | Text to append (plain text) | ## Examples ```bashgws docs +write --document DOC_ID --text 'Hello, world!'``` ## Tips - Text is inserted at the end of the document body.- For rich formatting, use the raw batchUpdate API instead. > [!CAUTION]> This is a **write** command — confirm with the user before executing. ## See Also - [gws-shared](../gws-shared/SKILL.md) — Global flags and auth- [gws-docs](../gws-docs/SKILL.md) — All read and write google docs commands