Back to skills
SkillHub ClubWrite Technical DocsFull StackData / AITech Writer

recipe-generate-report-from-sheet

Read data from a Google Sheet and create a formatted Google Docs report.

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
21,496
Hot score
99
Updated
March 20, 2026
Overall rating
C4.0
Composite score
4.0
Best-practice grade
B80.4

Install command

npx @skill-hub/cli install googleworkspace-cli-recipe-generate-report-from-sheet

Repository

googleworkspace/cli

Skill path: skills/recipe-generate-report-from-sheet

Read data from a Google Sheet and create a formatted Google Docs report.

Open repository

Best for

Primary workflow: Write Technical Docs.

Technical facets: Full Stack, Data / AI, Tech Writer.

Target audience: everyone.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: googleworkspace.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install recipe-generate-report-from-sheet into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/googleworkspace/cli before adding recipe-generate-report-from-sheet to shared team environments
  • Use recipe-generate-report-from-sheet for development workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
name: recipe-generate-report-from-sheet
version: 1.0.0
description: "Read data from a Google Sheet and create a formatted Google Docs report."
metadata:
  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

### Summary
Total deals: 45
Revenue: $125,000

### Top Deals
1. Acme Corp - $25,000
2. Widget Inc - $18,000'`
4. Share with stakeholders: `gws drive permissions create --params '{"fileId": "DOC_ID"}' --json '{"role": "reader", "type": "user", "emailAddress": "[email protected]"}'`

recipe-generate-report-from-sheet | SkillHub