From gws
Copy a Google Docs template, fill in content, and share with collaborators.
npx claudepluginhub fakoli/fakoli-plugins --plugin gwsThis skill uses the workspace's default tool permissions.
Copy a Google Docs template, fill in content, and share with collaborators.
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.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Copy a Google Docs template, fill in content, and share with collaborators.
Use this workflow when the user wants to create a new document based on an existing template (e.g., project briefs, meeting notes, proposals).
Help the user locate the template document:
gws drive files list \
--params '{"q": "name contains 'TEMPLATE_NAME' and mimeType = 'application/vnd.google-apps.document'"}' \
--fields "files(id,name)" --format table
gws drive files copy \
--params '{"fileId": "TEMPLATE_DOC_ID"}' \
--json '{"name": "NEW_DOCUMENT_NAME"}'
Capture the new document ID from the response.
gws docs +write --document-id NEW_DOC_ID --text 'CONTENT_HERE'
Use --dry-run first:
gws drive permissions create \
--params '{"fileId": "NEW_DOC_ID"}' \
--json '{"role": "writer", "type": "user", "emailAddress": "collaborator@company.com"}' \
--dry-run
Confirm, then execute.
Give the user the document URL: https://docs.google.com/document/d/NEW_DOC_ID
"role": "commenter" for review-only access