From gws
Share a Google Docs document with edit access and email collaborators the link.
npx claudepluginhub fakoli/fakoli-plugins --plugin gwsThis skill uses the workspace's default tool permissions.
Share a Google Docs document with edit access and email collaborators the link.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Designs, implements, and audits WCAG 2.2 AA accessible UIs for Web (ARIA/HTML5), iOS (SwiftUI traits), and Android (Compose semantics). Audits code for compliance gaps.
Share a Google Docs document with edit access and email collaborators the link.
Use this workflow when the user wants to share a document and make sure the recipients know about it via email.
gws drive files list \
--params '{"q": "name contains 'DOC_NAME' and mimeType = 'application/vnd.google-apps.document'"}' \
--fields "files(id,name,webViewLink)" --format table
Ask the user what access level to grant:
gws drive permissions create \
--params '{"fileId": "DOC_ID"}' \
--json '{"role": "writer", "type": "user", "emailAddress": "reviewer@company.com"}' \
--dry-run
Confirm, then execute.
gws gmail +send \
--to reviewer@company.com \
--subject 'Please review: DOC_NAME' \
--body 'I have shared DOC_NAME with you: DOC_LINK' \
--dry-run
Confirm, then send.
--dry-run for both permission and emailwebViewLink from the file listing as the shareable URL"role": "commenter" is good for review workflows