Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: gws-docs-write3description: "Google Docs: Append text to a document."4metadata:5version: 0.22.56openclaw:7category: "productivity"8requires:9bins:10- gws11cliHelp: "gws docs +write --help"12---1314# docs +write1516> **PREREQUISITE:** Read `../gws-shared/SKILL.md` for auth, global flags, and security rules. If missing, run `gws generate-skills` to create it.1718Append text to a document1920## Usage2122```bash23gws docs +write --document <ID> --text <TEXT>24```2526## Flags2728| Flag | Required | Default | Description |29|------|----------|---------|-------------|30| `--document` | ✓ | — | Document ID |31| `--text` | ✓ | — | Text to append (plain text) |3233## Examples3435```bash36gws docs +write --document DOC_ID --text 'Hello, world!'37```3839## Tips4041- Text is inserted at the end of the document body.42- For rich formatting, use the raw batchUpdate API instead.4344> [!CAUTION]45> This is a **write** command — confirm with the user before executing.4647## See Also4849- [gws-shared](../gws-shared/SKILL.md) — Global flags and auth50- [gws-docs](../gws-docs/SKILL.md) — All read and write google docs commands51