recipe-schedule-recurring-event

Create recurring Google Calendar events with attendees using the gws CLI.

Updated Nov 9, 2023
One-click install
npx skills add https://github.com/oresttokovenko/dot-files --skill recipe-schedule-recurring-event-oresttokovenko
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: recipe-schedule-recurring-event
Source: https://github.com/oresttokovenko/dot-files/tree/main/chezmoi/dot_agents/skills/recipe-schedule-recurring-event
Command: npx skills add https://github.com/oresttokovenko/dot-files --skill recipe-schedule-recurring-event-oresttokovenko

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Manually creating repeating meetings in Google Calendar is repetitive and error-prone, especially when setting recurrence rules and inviting attendees. This Skill automates the creation of recurring calendar events through a single command. ## Core Features & Use Cases - Recurring Event Creation: Inserts a Google Calendar event with an RRULE recurrence pattern such as weekly meetings on specific weekdays. - Attendee Management: Adds attendee email addresses directly to the event at creation time. - Verification Step: Confirms the event was created by listing upcoming agenda items for the next 14 days. - Use Case: Set up a weekly team standup every Monday at 9:00 AM Eastern Time with the whole team invited, then verify it appears on the calendar. ## Quick Start Ask the assistant to create a recurring weekly Google Calendar event with attendees and verify it appears on the agenda.

Frequently Asked Questions about recipe-schedule-recurring-event

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a recurring Google Calendar event from the command line?

Use gws calendar events insert with a JSON payload containing summary, start and end times with timeZone, a recurrence array with an RRULE string, and an attendees list. The event is created on the primary calendar immediately.

How do I add attendees to a Google Calendar event with gws?

Include an attendees array in the JSON payload passed to gws calendar events insert, with each attendee specified as an object containing an email field. Attendees are attached when the event is created.

What recurrence rules does Google Calendar support for repeating events?

Google Calendar accepts standard RRULE strings such as FREQ=WEEKLY with BYDAY parameters to define repeating patterns. This recipe uses RRULE:FREQ=WEEKLY;BYDAY=MO for a weekly Monday meeting.

How can I verify a calendar event was created successfully?

Run gws calendar +agenda with a days parameter and table format to list upcoming events. Checking the next 14 days confirms the recurring event appears on the schedule.

What are the prerequisites for scheduling events with gws?

The gws binary must be installed and the gws-calendar skill must be loaded before running this recipe. Without these prerequisites the calendar insert and agenda commands cannot execute.