SKILL.md
readonlyread-only
name
recipe-schedule-recurring-event
description
建立一個包含與會者的重複性 Google 日曆活動。
安排重複性會議
先決條件: 載入以下技能以執行此配方:
gws-calendar
建立一個包含與會者的重複性 Google 日曆活動。
步驟
- 建立重複性活動:
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"}]}' - 驗證是否已建立:
gws calendar +agenda --days 14 --format table






