Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Create daily recurring Google Calendar focus time blocks to protect deep work hours on weekdays.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-block-focus-time3description: "Create recurring focus time blocks on Google Calendar to protect deep work hours."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "scheduling"9requires:10bins:11- gws12skills:13- gws-calendar14---1516# Block Focus Time on Google Calendar1718> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`1920Create recurring focus time blocks on Google Calendar to protect deep work hours.2122## Steps23241. Create recurring focus block: `gws calendar events insert --params '{"calendarId": "primary"}' --json '{"summary": "Focus Time", "description": "Protected deep work block", "start": {"dateTime": "2025-01-20T09:00:00", "timeZone": "America/New_York"}, "end": {"dateTime": "2025-01-20T11:00:00", "timeZone": "America/New_York"}, "recurrence": ["RRULE:FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR"], "transparency": "opaque"}'`252. Verify it shows as busy: `gws calendar +agenda`2627