Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Copy a Google Docs template, write content into it, and share the new doc with collaborators.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-create-doc-from-template3description: "Copy a Google Docs template, fill in content, and share with collaborators."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "productivity"9requires:10bins:11- gws12skills:13- gws-drive14- gws-docs15---1617# Create a Google Doc from a Template1819> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive`, `gws-docs`2021Copy a Google Docs template, fill in content, and share with collaborators.2223## Steps24251. Copy the template: `gws drive files copy --params '{"fileId": "TEMPLATE_DOC_ID"}' --json '{"name": "Project Brief - Q2 Launch"}'`262. Get the new doc ID from the response273. Add content: `gws docs +write --document-id NEW_DOC_ID --text '## Project: Q2 Launch2829### Objective30Launch the new feature by end of Q2.'`314. Share with team: `gws drive permissions create --params '{"fileId": "NEW_DOC_ID"}' --json '{"role": "writer", "type": "user", "emailAddress": "[email protected]"}'`3233