From gws
Duplicates Google Sheets template tab in same spreadsheet and renames for new month using gws CLI. For monthly tracking templates.
npx claudepluginhub wadewarren/gws-claude-pluginThis skill uses the workspace's default tool permissions.
> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets`
Duplicates Google Sheets template tab in same spreadsheet and renames for new month using gws CLI. For monthly tracking templates.
Automates Google Sheets operations like reading/writing data, managing spreadsheets/tabs, formatting cells, filtering rows, and upserting records via Composio's Rube MCP toolkit. Use for programmatic spreadsheet workflows requiring OAuth-connected tools.
Automates Google Sheets via Composio tools over Rube MCP: read/write data, manage tabs/sheets, format cells, filter rows, append/upsert records.
Share bugs, ideas, or general feedback.
PREREQUISITE: Load the following skills to execute this recipe:
gws-sheets
Duplicate a Google Sheets template tab for a new month of tracking.
gws sheets spreadsheets get --params '{"spreadsheetId": "SHEET_ID"}'gws sheets spreadsheets sheets copyTo --params '{"spreadsheetId": "SHEET_ID", "sheetId": 0}' --json '{"destinationSpreadsheetId": "SHEET_ID"}'gws sheets spreadsheets batchUpdate --params '{"spreadsheetId": "SHEET_ID"}' --json '{"requests": [{"updateSheetProperties": {"properties": {"sheetId": 123, "title": "February 2025"}, "fields": "title"}}]}'