Recipe Plan Weekly Schedule
googleworkspace/cliThis skill allows users to review their Google Calendar for a specific week, identify scheduling gaps, and add new events to fill those gaps. It provides key capabilities such as checking the week's agenda, querying free/busy times, and inserting events, making it ideal for individuals seeking to optimize their weekly planning. The tool is designed for anyone looking to streamline their scheduling process or automate calendar management through a command-line interface.
Plan Your Weekly Google Calendar Schedule
PREREQUISITE: Load the following skills to execute this recipe:
gws-calendarReview your Google Calendar week, identify gaps, and add events to fill them.
Steps
- Check this week's agenda:
gws calendar +agenda - 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"}]}' - Add a new event:
gws calendar +insert --summary 'Deep Work Block' --start '2026-01-21T14:00:00' --end '2026-01-21T16:00:00' - Review updated schedule:
gws calendar +agenda
GitHub Owner
Owner: googleworkspace
GitHub Links
- Website: https://developers.google.com/workspace
- Twitter: https://twitter.com/workspacedevs
SKILL.md
name: recipe-plan-weekly-schedule version: 1.0.0 description: "Review your Google Calendar week, identify gaps, and add events to fill them." metadata: openclaw: category: "recipe" domain: "scheduling" requires: bins: ["gws"] skills: ["gws-calendar"]
Plan Your Weekly Google Calendar Schedule
PREREQUISITE: Load the following skills to execute this recipe:
gws-calendarReview your Google Calendar week, identify gaps, and add events to fill them.
Steps
- Check this week's agenda:
gws calendar +agenda - 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"}]}' - Add a new event:
gws calendar +insert --summary 'Deep Work Block' --start '2026-01-21T14:00:00' --end '2026-01-21T16:00:00' - Review updated schedule:
gws calendar +agenda