SkillAgentSearch skills...

feishu-task

Feishu task management operations. Activate when user mentions tasks, todos, task lists.

Install / Use

npx skills add OPPO-Mente-Lab/X-OmniClaw

Installs into whichever agent you are using.

About this skill
📄

SKILL.md

Installable skill definition

Quality Score

62/100

Supported Platforms

Universal

Tags


name: 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 tasks
  • feishu_task_get - Get task details
  • feishu_task_create - Create task
  • feishu_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

View on GitHub
GitHub Stars0
CategoryDevelopment
Updated4mo ago
Forks0

Security Score

78/100

Audited on May 22, 2026

1 medium1 low1 info