SKILL.md
只读
名称
recipe-find-free-time
描述
查询多个用户的 Google 日历空闲/忙碌状态,以找到会议时间段。
跨日历查找空闲时间
前提条件: 加载以下技能以执行此配方:
gws-calendar
查询多个用户的 Google 日历空闲/忙碌状态,以找到会议时间段。
步骤
- 查询空闲/忙碌:
gws calendar freebusy query --json '{"timeMin": "2024-03-18T08:00:00Z", "timeMax": "2024-03-18T18:00:00Z", "items": [{"id": "user1@company.com"}, {"id": "user2@company.com"}]}' - 检查输出以找到重叠的空闲时间段
- 在空闲时间段创建事件:
gws calendar +insert --summary 'Meeting' --attendee user1@company.com --attendee user2@company.com --start '2024-03-18T14:00:00' --end '2024-03-18T14:30:00'






