feishu-task
Feishu task management operations. Activate when user mentions tasks, todos, task lists.
Install / Use
npx skills add OPPO-Mente-Lab/X-OmniClawInstalls into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
Development & EngineeringSupported Platforms
Tags
Skill content
View source on GitHubname: feishu-task description: | Feishu task management operations. Activate when user mentions tasks, todos, task lists.
Feishu Task Tool
Tool feishu_task for task management operations.
Actions
List Tasks
{ "action": "list", "page_size": 20 }
Returns: user's tasks with details.
Get Task Details
{ "action": "get", "task_id": "task_xxx" }
Returns: complete task information including title, description, status, assignee, due date.
Create Task
{
"action": "create",
"title": "New Task",
"description": "Task description",
"due_date": "2024-12-31",
"assignee_id": "ou_xxx"
}
Creates a new task.
Update Task
{
"action": "update",
"task_id": "task_xxx",
"title": "Updated Title",
"status": "completed"
}
Updates an existing task.
Task Status
| Status | Description |
|--------|-------------|
| todo | Not started |
| in_progress | In progress |
| completed | Completed |
| canceled | Canceled |
X-OmniClaw Implementation
Tool Class: FeishuTaskTools.kt
Available Tools:
feishu_task_list- List tasksfeishu_task_get- Get task detailsfeishu_task_create- Create taskfeishu_task_update- Update task
Example Usage:
// List tasks
val result = feishuTaskTools.listTasks(pageSize = 20)
// Create task
val result = feishuTaskTools.createTask(
title = "New Task",
description = "Description",
dueDate = "2024-12-31",
assigneeId = "ou_xxx"
)
// Update task status
val result = feishuTaskTools.updateTask(
taskId = "task_xxx",
status = "completed"
)
Use Cases
- Task Management: Create, update, list tasks
- Project Tracking: Track task status and progress
- Team Collaboration: Assign tasks to team members
- Reminders: Set due dates and reminders
Permissions
Required: task:task, task:task:readonly
Related Skills
career-ops
72.3kOpen-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)
ai-job-search
43.5kThe job search that runs on your machine. AI job application framework built on Claude Code: evaluate postings, tailor CVs, write cover letters, prep interviews. Fork it and own it.
claude-howto
41.6kA visual, example-driven guide to Claude Code — from basic concepts to advanced agents, with copy-paste templates that bring immediate value.
guizang-ppt-skill
26.7kAI-agent Skill for generating polished HTML slide decks: editorial magazine and Swiss layouts, image prompts, social covers, and a WebGL/low-power presentation runtime.
Security Score
Audited on May 22, 2026
