Agent Skills
› googleworkspace/cli
› recipe-copy-sheet-for-new-month
recipe-copy-sheet-for-new-month
GitHub通过复制模板标签并重命名,为月度数据追踪创建新的Google Sheets工作表。
触发场景
需要为新月份初始化数据追踪表格
批量创建结构相同的月度电子表格
安装
npx skills add googleworkspace/cli --skill recipe-copy-sheet-for-new-month -g -y
SKILL.md
Frontmatter
{
"name": "recipe-copy-sheet-for-new-month",
"metadata": {
"version": "0.22.5",
"openclaw": {
"domain": "productivity",
"category": "recipe",
"requires": {
"bins": [
"gws"
],
"skills": [
"gws-sheets"
]
}
}
},
"description": "Duplicate a Google Sheets template tab for a new month of tracking."
}
Copy a Google Sheet for a New Month
PREREQUISITE: Load the following skills to execute this recipe:
gws-sheets
Duplicate a Google Sheets template tab for a new month of tracking.
Steps
- Get spreadsheet details:
gws sheets spreadsheets get --params '{"spreadsheetId": "SHEET_ID"}' - Copy the template sheet:
gws sheets spreadsheets sheets copyTo --params '{"spreadsheetId": "SHEET_ID", "sheetId": 0}' --json '{"destinationSpreadsheetId": "SHEET_ID"}' - Rename the new tab:
gws sheets spreadsheets batchUpdate --params '{"spreadsheetId": "SHEET_ID"}' --json '{"requests": [{"updateSheetProperties": {"properties": {"sheetId": 123, "title": "February 2025"}, "fields": "title"}}]}'
版本历史
- a3768d0 当前 2026-08-20 07:26


