From gws
Set up a Google Sheets spreadsheet for tracking expenses with headers and initial entries.
npx claudepluginhub fakoli/fakoli-plugins --plugin gwsThis skill uses the workspace's default tool permissions.
Set up a Google Sheets spreadsheet for tracking expenses with headers and initial entries.
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.
Set up a Google Sheets spreadsheet for tracking expenses with headers and initial entries.
Use this workflow when the user wants to create a new expense tracking spreadsheet with a standard structure.
gws drive files create --json '{"name": "TRACKER_NAME", "mimeType": "application/vnd.google-apps.spreadsheet"}'
Capture the spreadsheet ID from the response.
gws sheets +append --spreadsheet SHEET_ID --range 'Sheet1' \
--values '["Date", "Category", "Description", "Amount"]'
If the user wants example data:
gws sheets +append --spreadsheet SHEET_ID --range 'Sheet1' \
--values '["2026-03-14", "Travel", "Flight to NYC", "450.00"]'
If the user wants to share:
gws drive permissions create \
--params '{"fileId": "SHEET_ID"}' \
--json '{"role": "reader", "type": "user", "emailAddress": "manager@company.com"}' \
--dry-run
Confirm, then execute.
Give the user: https://docs.google.com/spreadsheets/d/SHEET_ID