Feishu-skills feishu-task
Manage Feishu (Lark) Tasks. Create tasks, set due dates, and assign users for collaboration.
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-task" ~/.claude/skills/autogame-17-feishu-skills-feishu-task && rm -rf "$T"
manifest:
feishu-task/SKILL.mdsource content
feishu-task
A skill to manage Feishu (Lark) Tasks directly via the Open Platform API.
Usage
# Create a task node skills/feishu-task/index.js create --summary "Review PR #123" --due "2023-12-31T18:00:00Z" --origin "OpenClaw" # Complete a task node skills/feishu-task/index.js complete --task_id "t_12345" # Delete a task node skills/feishu-task/index.js delete --task_id "t_12345"
Options
:create
: Task title/content.--summary
: Detailed description (optional).--description
: Due date/time (ISO 8601 or timestamp).--due
: Origin source description.--origin
: Assignee User ID (optional).--user_id
:complete
: The ID of the task to complete.--task_id
:delete
: The ID of the task to delete.--task_id