Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Read event data rows from a Google Sheet and create corresponding Google Calendar events.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-create-events-from-sheet3description: "Read event data from a Google Sheets spreadsheet and create Google Calendar entries for each row."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "productivity"9requires:10bins:11- gws12skills:13- gws-sheets14- gws-calendar15---1617# Create Google Calendar Events from a Sheet1819> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-sheets`, `gws-calendar`2021Read event data from a Google Sheets spreadsheet and create Google Calendar entries for each row.2223## Steps24251. Read event data: `gws sheets +read --spreadsheet SHEET_ID --range "Events!A2:D"`262. For each row, create a calendar event: `gws calendar +insert --summary 'Team Standup' --start '2026-01-20T09:00:00' --end '2026-01-20T09:30:00' --attendee [email protected] --attendee [email protected]`2728