Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Share a Google Doc with editor access and email the collaborator a direct link.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-share-doc-and-notify3description: "Share a Google Docs document with edit access and email collaborators the link."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "productivity"9requires:10bins:11- gws12skills:13- gws-drive14- gws-docs15- gws-gmail16---1718# Share a Google Doc and Notify Collaborators1920> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive`, `gws-docs`, `gws-gmail`2122Share a Google Docs document with edit access and email collaborators the link.2324## Steps25261. Find the doc: `gws drive files list --params '{"q": "name contains '\''Project Brief'\'' and mimeType = '\''application/vnd.google-apps.document'\''"}'`272. Share with editor access: `gws drive permissions create --params '{"fileId": "DOC_ID"}' --json '{"role": "writer", "type": "user", "emailAddress": "[email protected]"}'`283. Email the link: `gws gmail +send --to [email protected] --subject 'Please review: Project Brief' --body 'I have shared the project brief with you: https://docs.google.com/document/d/DOC_ID'`2930