Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Append a sales deal status update row to a Google Sheets pipeline tracking spreadsheet.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-log-deal-update3description: "Append a deal status update to a Google Sheets sales tracking spreadsheet."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "sales"9requires:10bins:11- gws12skills:13- gws-sheets14- gws-drive15---1617# Log Deal Update to Sheet1819> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets`, `gws-drive`2021Append a deal status update to a Google Sheets sales tracking spreadsheet.2223## Steps24251. Find the tracking sheet: `gws drive files list --params '{"q": "name = '\''Sales Pipeline'\'' and mimeType = '\''application/vnd.google-apps.spreadsheet'\''"}'`262. Read current data: `gws sheets +read --spreadsheet SHEET_ID --range "Pipeline!A1:F"`273. Append new row: `gws sheets +append --spreadsheet SHEET_ID --range 'Pipeline' --values '["2024-03-15", "Acme Corp", "Proposal Sent", "$50,000", "Q2", "jdoe"]'`2829