Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Read data from a Google Sheet and generate a formatted Google Docs report, then share with stakeholders.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-generate-report-from-sheet3description: "Read data from a Google Sheet and create a formatted Google Docs report."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "productivity"9requires:10bins:11- gws12skills:13- gws-sheets14- gws-docs15- gws-drive16---1718# Generate a Google Docs Report from Sheet Data1920> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets`, `gws-docs`, `gws-drive`2122Read data from a Google Sheet and create a formatted Google Docs report.2324## Steps25261. Read the data: `gws sheets +read --spreadsheet SHEET_ID --range "Sales!A1:D"`272. Create the report doc: `gws docs documents create --json '{"title": "Sales Report - January 2025"}'`283. Write the report: `gws docs +write --document-id DOC_ID --text '## Sales Report - January 20252930### Summary31Total deals: 4532Revenue: $125,0003334### Top Deals351. Acme Corp - $25,000362. Widget Inc - $18,000'`374. Share with stakeholders: `gws drive permissions create --params '{"fileId": "DOC_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "[email protected]"}'`3839