Agent Skills
› googleworkspace/cli
› recipe-compare-sheet-tabs
recipe-compare-sheet-tabs
GitHub通过读取Google Sheets中两个指定标签页的数据,对比并识别两者之间的差异。
触发场景
需要对比电子表格不同工作表数据
查找表格内容变更
安装
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
版本历史
- a3768d0 当前 2026-08-20 07:26


