SKILL.md
只读
名称
recipe-schedule-recurring-event
描述
创建一个包含参与者的重复性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






