mcpbeat

Recipe Schedule Recurring Event

googleworkspace/recipe-schedule-recurring-event

Create a recurring Google Calendar event with attendees.

230 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
30175
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/googleworkspace/cli --skill recipe-schedule-recurring-event

The instruction itself

2 sections, as written by the author

Schedule a Recurring Meeting

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

Create a recurring Google Calendar event with attendees.

Steps

  • 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": "[email protected]"}]}'
  • Verify it was created: gws calendar +agenda --days 14 --format table

How to use it

Copy the folder

Take googleworkspace/recipe-schedule-recurring-event from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.