
Recipe Schedule Recurring Event
Create a recurring Google Calendar standup or team slot with attendees using the gws CLI after loading gws-calendar.
Install
npx skills add https://github.com/googleworkspace/cli --skill recipe-schedule-recurring-eventWhat is this skill?
- Prerequisite: load gws-calendar skill before executing recipe steps
- Inserts recurring event with RRULE FREQ=WEEKLY BYDAY=MO via gws calendar events insert
- JSON payload covers summary, start/end dateTime, timeZone, recurrence, and attendees array
- Verification step uses gws calendar +agenda --days 14 --format table
- OpenClaw recipe metadata v0.22.5 under scheduling domain
Adoption & trust: 15.6k installs on skills.sh; 26.9k GitHub stars; 3/3 security scanners passed (skills.sh audits).
Recommended Skills
Agent Browservercel-labs/agent-browser
Lark Imlarksuite/cli
Lark Calendarlarksuite/cli
Lark Sheetslarksuite/cli
Lark Vclarksuite/cli
Lark Contactlarksuite/cli
Journey fit
Primary fit
Build integrations is where you connect workspace tooling to scripts and agent recipes before relying on them in daily ops. This recipe is a thin orchestration over Google Calendar API via gws, not a full calendar product feature.
Common Questions / FAQ
Is Recipe Schedule Recurring Event safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Recipe Schedule Recurring Event
# 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`