# calendar +freebusy > **前置条件:** 先阅读 [`../lark-shared/SKILL.md`](../../lark-shared/SKILL.md)。 查询用户主日历的忙闲信息,返回指定时间范围内的忙碌时段列表和rsvp的状态。 需要的scopes: ["calendar:calendar.free_busy:read"] ## 命令 ```bash # 查询当前用户今天的忙闲(默认) lark-cli calendar +freebusy # 自定义时间范围(仅日期) lark-cli calendar +freebusy --start 2026-03-11 --end 2026-03-12 # 自定义时间范围(完整 ISO 8601) lark-cli calendar +freebusy --start "2026-03-11T08:00:00+08:00" --end "2026-03-11T18:00:00+08:00" # 查询指定用户的忙闲信息 lark-cli calendar +freebusy --start 2026-03-11 --end 2026-03-12 --user-id ou_xxx # 人类可读格式输出 lark-cli calendar +freebusy --format pretty ``` ## 参数 | 参数 | 必填 | 说明 | |------|------|------| | `--start