Feishu-skills feishu-calendar
Manage Feishu (Lark) calendars including listing, searching, syncing events, creating calendar entries from task requests, and setting up shared project calendars.
install
source · Clone the upstream repo
git clone https://github.com/autogame-17/feishu-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/autogame-17/feishu-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/feishu-calendar" ~/.claude/skills/autogame-17-feishu-skills-feishu-calendar && rm -rf "$T"
manifest:
feishu-calendar/SKILL.mdsource content
feishu-calendar
Manage Feishu (Lark) calendars -- list, search, sync events, create entries, and set up shared calendars.
Prerequisites
installed with validfeishu-common
andFEISHU_APP_ID
.FEISHU_APP_SECRET
Commands
List Calendars
Check available calendars and their IDs.
node skills/feishu-calendar/list_test.js
Search Calendar
Find a calendar by name/summary.
node skills/feishu-calendar/search_cal.js
Check Master's Calendar
Specific check for the Master's calendar status.
node skills/feishu-calendar/check_master.js
Sync Events
Sync calendar events to local state/memory:
node skills/feishu-calendar/sync_routine.js
Create Event
node skills/feishu-calendar/create.js --summary "Task: <Title>" --desc "<Context>" --start "<ISO>" --end "<ISO+1h>" --attendees "<User_ID>"
Setup Shared Calendar
Create a shared project calendar and add members:
node skills/feishu-calendar/setup_shared.js --name "Project Name" --desc "Description" --members "ou_1,ou_2" --role "writer"
Task Marking Protocol
Trigger: User says "Mark this task" or "Remind me to...".
- Extract date/time from the request (e.g., "Feb 4th" becomes
).YYYY-02-04 - Run
withcreate.js
,--summary "Task: <Title>"
set to the requester's ID, and a 1-hour default duration.--attendees