From google-workspace-cli
Append a deal status update to a Google Sheets sales tracking spreadsheet.
npx claudepluginhub pleaseai/claude-code-plugins --plugin google-workspaceThis skill uses the workspace's default tool permissions.
> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets`, `gws-drive`
Appends deal status updates (date, company, status, value, quarter, owner) to Google Sheets sales pipeline spreadsheets using gws CLI commands. Requires gws-sheets and gws-drive.
Read/write Google Sheets via Python CLI with OAuth: export content as text/CSV/JSON, fetch ranges/metadata, search sheets, update cells, append rows, clear ranges.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Share bugs, ideas, or general feedback.
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.
gws drive files list --params '{"q": "name = '\''Sales Pipeline'\'' and mimeType = '\''application/vnd.google-apps.spreadsheet'\''"}'gws sheets +read --spreadsheet-id SHEET_ID --range 'Pipeline!A1:F'gws sheets +append --spreadsheet-id SHEET_ID --range 'Pipeline' --values '["2024-03-15", "Acme Corp", "Proposal Sent", "$50,000", "Q2", "jdoe"]'