Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Duplicate a Google Sheets template tab and rename it for a new month of tracking.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-copy-sheet-for-new-month3description: "Duplicate a Google Sheets template tab for a new month of tracking."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "productivity"9requires:10bins:11- gws12skills:13- gws-sheets14---1516# Copy a Google Sheet for a New Month1718> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets`1920Duplicate a Google Sheets template tab for a new month of tracking.2122## Steps23241. Get spreadsheet details: `gws sheets spreadsheets get --params '{"spreadsheetId": "SHEET_ID"}'`252. Copy the template sheet: `gws sheets spreadsheets sheets copyTo --params '{"spreadsheetId": "SHEET_ID", "sheetId": 0}' --json '{"destinationSpreadsheetId": "SHEET_ID"}'`263. Rename the new tab: `gws sheets spreadsheets batchUpdate --params '{"spreadsheetId": "SHEET_ID"}' --json '{"requests": [{"updateSheetProperties": {"properties": {"sheetId": 123, "title": "February 2025"}, "fields": "title"}}]}'`2728