From gws
Share a Google Drive file and email the link with a message to recipients.
npx claudepluginhub fakoli/fakoli-plugins --plugin gwsThis skill uses the workspace's default tool permissions.
Share a Google Drive file and email the link with a message to recipients.
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 Drive file and email the link with a message to recipients.
Use this workflow when the user wants to share a file from Drive by granting access and sending the link via email in one step.
gws drive files list \
--params '{"q": "name contains 'FILE_NAME'"}' \
--fields "files(id,name,webViewLink)" --format table
Ask the user what role to grant (reader, writer, commenter):
gws drive permissions create \
--params '{"fileId": "FILE_ID"}' \
--json '{"role": "reader", "type": "user", "emailAddress": "recipient@example.com"}' \
--dry-run
Confirm, then execute.
gws gmail +send \
--to recipient@example.com \
--subject 'SUBJECT' \
--body 'MESSAGE_WITH_LINK' \
--dry-run
Confirm, then send.
--dry-run for both the permission grant and email sendwriter when reader is sufficientwebViewLink from the file listing is the shareable URL"type": "anyone" with "role": "reader" for "anyone with the link" sharing