← Back to Skills Marketplace
ramlee77

飞书任务管理增强版

by ramlee77 · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ Security Clean
139
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install feishu-task-plus
Description
飞书任务管理增强版 - 高级任务与清单管理工具。 **基础功能**(免费): - 创建、查询、更新任务 - 任务完成/反完成 - 创建和管理任务清单 **高级功能**(付费): - 子任务(Subtask)管理 - 高级筛选与批量操作 - 任务评论与讨论 - 重复任务模板 - 优先级标记 - 任务统计与报告 **...
README (SKILL.md)

飞书任务管理增强版

🚨 执行前必读

  • 时间格式:ISO 8601 / RFC 3339(带时区),例如 2026-02-28T17:00:00+08:00
  • current_user_id 强烈建议:从消息上下文的 SenderId 获取(ou_...),工具会自动添加为 follower
  • patch/get 必须:task_guid
  • tasklist.tasks 必须:tasklist_guid
  • 完成任务:completed_at = "2026-02-26 15:00:00"
  • 反完成:completed_at = "0"

📋 快速索引

用户意图 工具 action 必填参数
新建待办 feishu_task_task create summary
查未完成任务 feishu_task_task list -
获取任务详情 feishu_task_task get task_guid
完成任务 feishu_task_task patch task_guid, completed_at
创建清单 feishu_task_tasklist create name
查看清单任务 feishu_task_tasklist tasks tasklist_guid
创建子任务 feishu_task_subtask create task_guid, summary
查看子任务 feishu_task_subtask list task_guid
添加评论 feishu_task_comment create task_guid, content
查看评论 feishu_task_comment list task_guid

🛠️ 高级功能(付费版)

1. 子任务管理

创建子任务:

{
  "action": "create",
  "task_guid": "父任务GUID",
  "summary": "子任务标题",
  "description": "子任务描述",
  "due": {"timestamp": "2026-03-05 18:00:00", "is_all_day": false},
  "members": [
    {"id": "ou_xxx", "role": "assignee"}
  ]
}

查看子任务列表:

{
  "action": "list",
  "task_guid": "父任务GUID"
}

2. 任务评论

添加评论:

{
  "action": "create",
  "task_guid": "任务GUID",
  "content": "评论内容,最长3000字符"
}

查看评论:

{
  "action": "list",
  "task_guid": "任务GUID",
  "direction": "desc"
}

回复评论:

{
  "action": "create",
  "task_guid": "任务GUID",
  "content": "回复内容",
  "reply_to_comment_id": "被回复的评论ID"
}

3. 重复任务

{
  "action": "create",
  "summary": "每周例会",
  "due": {"timestamp": "2026-03-03 14:00:00", "is_all_day": false},
  "repeat_rule": "FREQ=WEEKLY;INTERVAL=1;BYDAY=MO"
}

支持的重复规则:

  • 每天:FREQ=DAILY;INTERVAL=1
  • 每周:FREQ=WEEKLY;INTERVAL=1;BYDAY=MO
  • 每月:FREQ=MONTHLY;INTERVAL=1

💰 定价信息

版本 价格 功能
免费版 ¥0 基础任务创建、查询、完成
专业版 ¥15/月 +子任务、评论、重复任务
企业版 ¥50/月 +批量操作、统计报告、API

📚 附录:任务资源关系

任务清单(Tasklist)
  └─ 任务(Task)
      ├─ 子任务(Subtask)
      ├─ 成员:负责人(assignee)、关注人(follower)
      ├─ 截止时间(due)
      └─ 评论(Comment)
Usage Guidance
This skill appears to be a straightforward Feishu task helper and contains only in-scope instructions. Before installing, confirm: (1) how the skill will authenticate to Feishu — ensure you or the platform will provide a scoped connector token (app id/secret) rather than pasting broad credentials into the skill; (2) that the feishu_task_* tools referenced are official/approved connectors and have only the permissions they need (task read/write, not broader org data); (3) whether your workspace/admin policies allow an external skill to create/update tasks. If you need higher assurance, ask the skill publisher for details on authentication and connector scope. If the platform supplies the connector, verify its scope and audit logs for actions performed by the skill.
Capability Assessment
Purpose & Capability
Name, description, and the actions described (create/list/get/patch tasks, subtasks, comments, tasklists, repeat rules) align with a Feishu task-management helper. The JSON payload examples and required fields match the stated features.
Instruction Scope
SKILL.md gives concrete API-like action payloads and parameter requirements and stays within task-management functionality. It references extracting current_user_id from message context (SenderId) and expects task GUIDs; this is appropriate for a messaging-integrated task tool. It does not instruct reading arbitrary files or exfiltrating unrelated data. Note: it refers to tool names (feishu_task_task, feishu_task_subtask, etc.) but does not define how those tools are provided.
Install Mechanism
Instruction-only skill with no install spec and no code files — lowest-risk install surface. Nothing is downloaded or written to disk.
Credentials
The skill declares no required environment variables or credentials. In practice, a Feishu-integrated tool normally requires credentials (app id/secret or platform-managed token). The absence of declared auth info is not necessarily malicious (the platform may supply connector credentials), but you should confirm how authentication will be provided and what scope those credentials have.
Persistence & Privilege
always is false and there is no request to modify agent/system-wide config. The skill does not request permanent presence or elevated privileges.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install feishu-task-plus
  3. After installation, invoke the skill by name or use /feishu-task-plus
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
No changes detected in this version. - Version 1.0.1 contains no file modifications or feature updates.
v1.0.0
飞书任务管理增强版 v1.0.0 发布! - 提供免费基础功能:任务与清单的创建、查询、更新、完成和反完成。 - 推出高级付费功能:子任务管理、高级筛选、批量操作、任务评论、重复任务模板、优先级和统计报告。 - 支持通过关键词智能触发,包括“任务”“待办”“to-do”“清单”“task”。 - 清晰列出操作用法参数和详细 API 调用示范,便于使用和集成。 - 明确定价体系:免费、专业版与企业版功能区别。
Metadata
Slug feishu-task-plus
Version 1.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is 飞书任务管理增强版?

飞书任务管理增强版 - 高级任务与清单管理工具。 **基础功能**(免费): - 创建、查询、更新任务 - 任务完成/反完成 - 创建和管理任务清单 **高级功能**(付费): - 子任务(Subtask)管理 - 高级筛选与批量操作 - 任务评论与讨论 - 重复任务模板 - 优先级标记 - 任务统计与报告 **... It is an AI Agent Skill for Claude Code / OpenClaw, with 139 downloads so far.

How do I install 飞书任务管理增强版?

Run "/install feishu-task-plus" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is 飞书任务管理增强版 free?

Yes, 飞书任务管理增强版 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does 飞书任务管理增强版 support?

飞书任务管理增强版 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created 飞书任务管理增强版?

It is built and maintained by ramlee77 (@ramlee77); the current version is v1.0.1.

💬 Comments