Loading...
Loading...
Lark Calendar Schedule Management Skill. Create calendars/schedules, check free/busy status, subscribe to calendar changes. Use this Skill when you need to automatically arrange meetings, check for time conflicts, or monitor schedule changes.
npx skill4agent add alextangson/feishu_skills feishu-calendar| Item | Value |
|---|---|
| Base URL | |
| Authentication Method | |
| Content-Type | |
POST /open-apis/calendar/v4/calendars{ "summary": "Project Calendar" }POST /open-apis/calendar/v4/calendars/:calendar_id/events{
"summary": "Requirement Alignment Meeting",
"description": "Discuss Q2 product planning",
"start_time": { "timestamp": "1770641576" },
"end_time": { "timestamp": "1770645176" }
}event_idPOST /open-apis/calendar/v4/calendars/:calendar_id/events/:event_id/attendees?user_id_type=open_id{
"attendees": [
{ "type": "user", "user_id": "ou_xxx" }
]
}user_id_type=open_idou_remindersPATCH /open-apis/calendar/v4/calendars/:calendar_id/events/:event_idDELETE /open-apis/calendar/v4/calendars/:calendar_id/events/:event_idPOST /open-apis/calendar/v4/freebusy/list{
"time_min": "2026-02-10T09:00:00+08:00",
"time_max": "2026-02-10T18:00:00+08:00",
"user_id": "ou_xxx"
}POST /open-apis/calendar/v4/calendars/:calendar_id/subscribe