Claude Agent Skill · by Googleworkspace

Recipe Generate Report From Sheet

This recipe automates the common workflow of pulling data from Google Sheets and turning it into a polished Google Docs report with proper formatting and sharin

Install
Terminal · npx
$npx skills add https://github.com/googleworkspace/cli --skill recipe-generate-report-from-sheet
Works with Paperclip

How Recipe Generate Report From Sheet fits into a Paperclip company.

Recipe Generate Report From Sheet drops into any Paperclip agent that handles this kind of work. Assign it to a specialist inside a pre-configured PaperclipOrg company and the skill becomes available on every heartbeat — no prompt engineering, no tool wiring.

S
SaaS FactoryPaired

Pre-configured AI company — 18 agents, 18 skills, one-time purchase.

$27$59
Explore pack
Source file
SKILL.md37 lines
Expand
---name: recipe-generate-report-from-sheetdescription: "Read data from a Google Sheet and create a formatted Google Docs report."metadata:  version: 0.22.5  openclaw:    category: "recipe"    domain: "productivity"    requires:      bins:        - gws      skills:        - gws-sheets        - gws-docs        - gws-drive--- # Generate a Google Docs Report from Sheet Data > **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets`, `gws-docs`, `gws-drive` Read data from a Google Sheet and create a formatted Google Docs report. ## Steps 1. Read the data: `gws sheets +read --spreadsheet SHEET_ID --range "Sales!A1:D"`2. Create the report doc: `gws docs documents create --json '{"title": "Sales Report - January 2025"}'`3. Write the report: `gws docs +write --document-id DOC_ID --text '## Sales Report - January 2025 ### SummaryTotal deals: 45Revenue: $125,000 ### Top Deals1. Acme Corp - $25,0002. Widget Inc - $18,000'`4. Share with stakeholders: `gws drive permissions create --params '{"fileId": "DOC_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "cfo@company.com"}'`