skillfed

recipe-schedule-recurring-event

This recipe automates setup of repeating calendar meetings in Google Calendar, adding attendees and configuring recurrence rules in a single operation. It builds on the gws-calendar skill to handle the full workflow.

recipe-schedule-recurring-event creates a recurring Google Calendar event and adds attendees in one command.

AI-generated summary based on this skill's SKILL.md

30,031 1,753 Apache-2.0 updated by googleworkspace

Install

googleworkspace/cli/recipe-schedule-recurring-event · repository language: Rust

CLI (skillfed)coming soon
git clone https://github.com/googleworkspace/cli
cp -r cli/skills/recipe-schedule-recurring-event ~/.claude/skills/recipe-schedule-recurring-event

Frequently asked questions

AI-generated answers based on this skill's SKILL.md and metadata

How do I create a recurring Google Calendar event?

recipe-schedule-recurring-event automates the setup of repeating calendar meetings in Google Calendar. The recipe configures recurrence rules and adds attendees in a single operation, building on the gws-calendar skill to handle the full workflow from start to finish.

Can recipe-schedule-recurring-event schedule weekly meeting with attendees?

Yes. recipe-schedule-recurring-event is designed to schedule weekly meetings with multiple attendees. It automates the entire process of creating the recurring event, setting the recurrence pattern, and adding all specified attendees to the meeting in one streamlined operation.

How do I set up a recurring standup meeting?

recipe-schedule-recurring-event simplifies standup meeting setup by automating recurring event creation with attendee management. You can configure weekly or custom recurrence patterns and add your team members as attendees, all within a single automated workflow.

What does recipe-schedule-recurring-event do?

recipe-schedule-recurring-event automates the creation of repeating calendar events in Google Calendar with attendee management. It handles recurrence rule configuration and attendee addition in one operation, eliminating manual steps and reducing setup time for recurring team meetings.

Can I add recurring event to Google Calendar with this recipe?

Yes. recipe-schedule-recurring-event adds recurring events to Google Calendar with full attendee support. The recipe builds on the gws-calendar skill to automate the complete workflow, including recurrence setup and attendee management in a single operation.

How to schedule recurring meetings with recipe-schedule-recurring-event?

recipe-schedule-recurring-event automates recurring meeting scheduling by handling recurrence rules and attendee management together. Configure your meeting frequency, add attendees, and the recipe sets up the repeating calendar event in Google Calendar automatically.

SKILL.md

rendered from the published skill — quoted content, verbatim

Schedule a Recurring Meeting

> PREREQUISITE: Load the following skills to execute this recipe: gws-calendar

Create a recurring Google Calendar event with attendees.

Steps

  1. Create recurring event: gws calendar events insert --params '{"calendarId": "primary"}' --json '{"summary": "Weekly Standup", "start": {"dateTime": "2024-03-18T09:00:00", "timeZone": "America/New_York"}, "end": {"dateTime": "2024-03-18T09:30:00", "timeZone": "America/New_York"}, "recurrence": ["RRULE:FREQ=WEEKLY;BYDAY=MO"], "attendees": [{"email": "team@company.com"}]}'
  2. Verify it was created: gws calendar +agenda --days 14 --format table

Read as markdown · JSON record · Browse the source repository

File tree — 1 file
skills/recipe-schedule-recurring-event/SKILL.md

Related skills

Tags

meeting-automation calendar-recurrence team-scheduling event-attendees workspace-integration recurring-patterns calendar-workflow