Back to skills
SkillHub ClubWrite Technical DocsFull StackTech Writer

recipe-share-doc-and-notify

Share a Google Docs document with edit access and email collaborators the link.

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
21,513
Hot score
99
Updated
March 20, 2026
Overall rating
C4.0
Composite score
4.0
Best-practice grade
B77.6

Install command

npx @skill-hub/cli install googleworkspace-cli-recipe-share-doc-and-notify

Repository

googleworkspace/cli

Skill path: skills/recipe-share-doc-and-notify

Share a Google Docs document with edit access and email collaborators the link.

Open repository

Best for

Primary workflow: Write Technical Docs.

Technical facets: Full Stack, Tech Writer.

Target audience: everyone.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: googleworkspace.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install recipe-share-doc-and-notify into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/googleworkspace/cli before adding recipe-share-doc-and-notify to shared team environments
  • Use recipe-share-doc-and-notify for development workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
name: recipe-share-doc-and-notify
version: 1.0.0
description: "Share a Google Docs document with edit access and email collaborators the link."
metadata:
  openclaw:
    category: "recipe"
    domain: "productivity"
    requires:
      bins: ["gws"]
      skills: ["gws-drive", "gws-docs", "gws-gmail"]
---

# Share a Google Doc and Notify Collaborators

> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-drive`, `gws-docs`, `gws-gmail`

Share a Google Docs document with edit access and email collaborators the link.

## Steps

1. Find the doc: `gws drive files list --params '{"q": "name contains '\''Project Brief'\'' and mimeType = '\''application/vnd.google-apps.document'\''"}'`
2. Share with editor access: `gws drive permissions create --params '{"fileId": "DOC_ID"}' --json '{"role": "writer", "type": "user", "emailAddress": "[email protected]"}'`
3. 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'`

recipe-share-doc-and-notify | SkillHub