Recipe backup sheet as csv
Export a Google Sheets spreadsheet as a CSV file for local backup or processing.From its SKILL.md
npx -y skills add googleworkspace/cli --skill recipe-backup-sheet-as-csvAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
0.8 KB, 144 tokens by cl100k_base, as published. Nobody here has run it
Export a Google Sheet as CSV
PREREQUISITE: Load the following skills to execute this recipe:
gws-sheets,gws-drive
Export a Google Sheets spreadsheet as a CSV file for local backup or processing.
Steps
- Get spreadsheet details:
gws sheets spreadsheets get --params '{"spreadsheetId": "SHEET_ID"}' - Export as CSV:
gws drive files export --params '{"fileId": "SHEET_ID", "mimeType": "text/csv"}' - Or read values directly:
gws sheets +read --spreadsheet SHEET_ID --range 'Sheet1' --format csv
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.