Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Export a Google Sheets spreadsheet as a CSV file using gws drive export or sheets +read.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-backup-sheet-as-csv3description: "Export a Google Sheets spreadsheet as a CSV file for local backup or processing."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "productivity"9requires:10bins:11- gws12skills:13- gws-sheets14- gws-drive15---1617# Export a Google Sheet as CSV1819> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets`, `gws-drive`2021Export a Google Sheets spreadsheet as a CSV file for local backup or processing.2223## Steps24251. Get spreadsheet details: `gws sheets spreadsheets get --params '{"spreadsheetId": "SHEET_ID"}'`262. Export as CSV: `gws drive files export --params '{"fileId": "SHEET_ID", "mimeType": "text/csv"}'`273. Or read values directly: `gws sheets +read --spreadsheet SHEET_ID --range 'Sheet1' --format csv`2829