recipe-find-free-time

recipe-find-free-time

热门

查询多个用户的 Google 日历空闲/忙碌状态,以找到会议时间段。

2.7万Star
1669Fork
更新于 2026/3/31
SKILL.md
只读
名称
recipe-find-free-time
描述

查询多个用户的 Google 日历空闲/忙碌状态,以找到会议时间段。

跨日历查找空闲时间

前提条件: 加载以下技能以执行此配方:gws-calendar

查询多个用户的 Google 日历空闲/忙碌状态,以找到会议时间段。

步骤

  1. 查询空闲/忙碌: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"}]}'
  2. 检查输出以找到重叠的空闲时间段
  3. 在空闲时间段创建事件: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'