Agent Skills
› googleworkspace/cli
› recipe-compare-sheet-tabs
recipe-compare-sheet-tabs
GitHub通过读取Google Sheets两个标签页的数据并对比,识别其中的差异。
Trigger Scenarios
需要对比电子表格不同标签页数据差异
检查表格更新或变更
Install
npx skills add googleworkspace/cli --skill recipe-compare-sheet-tabs -g -y
SKILL.md
Frontmatter
{
"name": "recipe-compare-sheet-tabs",
"metadata": {
"version": "0.22.5",
"openclaw": {
"domain": "productivity",
"category": "recipe",
"requires": {
"bins": [
"gws"
],
"skills": [
"gws-sheets"
]
}
}
},
"description": "Read data from two tabs in a Google Sheet to compare and identify differences."
}
Compare Two Google Sheets Tabs
PREREQUISITE: Load the following skills to execute this recipe:
gws-sheets
Read data from two tabs in a Google Sheet to compare and identify differences.
Steps
- Read the first tab:
gws sheets +read --spreadsheet SHEET_ID --range "January!A1:D" - Read the second tab:
gws sheets +read --spreadsheet SHEET_ID --range "February!A1:D" - Compare the data and identify changes
Version History
- a3768d0 Current 2026-08-20 07:26


