Agent Skills
› googleworkspace/cli
› recipe-log-deal-update
recipe-log-deal-update
GitHub将交易状态更新追加到 Google Sheets 销售跟踪电子表格中。通过查找特定工作表、读取现有数据并追加新行来记录销售进展,需依赖 gws-sheets 和 gws-drive 技能。
Trigger Scenarios
需要记录新的销售交易状态
向销售管道电子表格添加新数据行
Install
npx skills add googleworkspace/cli --skill recipe-log-deal-update -g -y
SKILL.md
Frontmatter
{
"name": "recipe-log-deal-update",
"metadata": {
"version": "0.22.5",
"openclaw": {
"domain": "sales",
"category": "recipe",
"requires": {
"bins": [
"gws"
],
"skills": [
"gws-sheets",
"gws-drive"
]
}
}
},
"description": "Append a deal status update to a Google Sheets sales tracking spreadsheet."
}
Log Deal Update to Sheet
PREREQUISITE: Load the following skills to execute this recipe:
gws-sheets,gws-drive
Append a deal status update to a Google Sheets sales tracking spreadsheet.
Steps
- Find the tracking sheet:
gws drive files list --params '{"q": "name = '\''Sales Pipeline'\'' and mimeType = '\''application/vnd.google-apps.spreadsheet'\''"}' - Read current data:
gws sheets +read --spreadsheet SHEET_ID --range "Pipeline!A1:F" - Append new row:
gws sheets +append --spreadsheet SHEET_ID --range 'Pipeline' --values '["2024-03-15", "Acme Corp", "Proposal Sent", "$50,000", "Q2", "jdoe"]'
Version History
- a3768d0 Current 2026-08-20 07:26


