From google-workspace-cli
Creates recurring Google Calendar events with attendees using gws CLI. Verifies creation via agenda view. Useful for automating team meeting schedules.
How this skill is triggered — by the user, by Claude, or both
Slash command
/google-workspace-cli:recipe-schedule-recurring-eventThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **PREREQUISITE:** Load the following skills to execute this recipe: `gws-calendar`
PREREQUISITE: Load the following skills to execute this recipe:
gws-calendar
Create a recurring Google Calendar event with attendees.
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]"}]}'gws calendar +agenda --days 14 --format tablenpx claudepluginhub pleaseai/claude-code-plugins --plugin google-workspaceCreates recurring Google Calendar events with attendees using gws CLI. Includes JSON params for summary, times, RRULE recurrence, and verification via agenda.
Manages Google Calendar events via Apps Script API: query today/week/upcoming/range events for availability checks, create events with titles, times, guests, descriptions, and auto-invites.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.