gws-israeli-business-sheets
Installation
SKILL.md
GWS Israeli Business Sheets
Instructions
The Google Workspace CLI (gws, package @googleworkspace/cli) generates its command surface dynamically from Google's Discovery API. Every Sheets call follows one of two shapes:
- Raw API methods:
gws sheets spreadsheets <method> --params '<JSON>' [--json '<body JSON>']. The--paramsJSON carries path and query parameters (spreadsheetId,range,valueInputOption, etc.). The--jsonflag carries the request body for POST/PUT/PATCH methods. - Helper shortcuts:
gws sheets +readandgws sheets +appendwrap the most common reads and appends with simple flags.
Useful global flags: --dry-run (validate locally, no API call), --format json|table|yaml|csv (output format, default json). When in doubt about a method's exact parameters, run gws sheets --help, gws sheets spreadsheets --help, or gws schema sheets.spreadsheets.values.append.
Step 1: Verify GWS CLI Installation and Authentication
Before performing any Google Sheets operations, confirm the Google Workspace CLI is installed and authenticated.
# Check if gws is installed
gws --version