Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Review your Google Calendar week, find gaps with free/busy queries, and add new events to fill them.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: recipe-plan-weekly-schedule3description: "Review your Google Calendar week, identify gaps, and add events to fill them."4metadata:5version: 0.22.56openclaw:7category: "recipe"8domain: "scheduling"9requires:10bins:11- gws12skills:13- gws-calendar14---1516# Plan Your Weekly Google Calendar Schedule1718> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`1920Review your Google Calendar week, identify gaps, and add events to fill them.2122## Steps23241. Check this week's agenda: `gws calendar +agenda`252. Check free/busy for the week: `gws calendar freebusy query --json '{"timeMin": "2025-01-20T00:00:00Z", "timeMax": "2025-01-25T00:00:00Z", "items": [{"id": "primary"}]}'`263. Add a new event: `gws calendar +insert --summary 'Deep Work Block' --start '2026-01-21T14:00:00' --end '2026-01-21T16:00:00'`274. Review updated schedule: `gws calendar +agenda`2829