← 返回 Skills 市场
ramlee77

飞书任务管理增强版

作者 ramlee77 · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ 安全检测通过
139
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install feishu-task-plus
功能描述
飞书任务管理增强版 - 高级任务与清单管理工具。 **基础功能**(免费): - 创建、查询、更新任务 - 任务完成/反完成 - 创建和管理任务清单 **高级功能**(付费): - 子任务(Subtask)管理 - 高级筛选与批量操作 - 任务评论与讨论 - 重复任务模板 - 优先级标记 - 任务统计与报告 **...
使用说明 (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)
安全使用建议
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.
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install feishu-task-plus
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /feishu-task-plus 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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 调用示范,便于使用和集成。 - 明确定价体系:免费、专业版与企业版功能区别。
元数据
Slug feishu-task-plus
版本 1.0.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

飞书任务管理增强版 是什么?

飞书任务管理增强版 - 高级任务与清单管理工具。 **基础功能**(免费): - 创建、查询、更新任务 - 任务完成/反完成 - 创建和管理任务清单 **高级功能**(付费): - 子任务(Subtask)管理 - 高级筛选与批量操作 - 任务评论与讨论 - 重复任务模板 - 优先级标记 - 任务统计与报告 **... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 139 次。

如何安装 飞书任务管理增强版?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install feishu-task-plus」即可一键安装,无需额外配置。

飞书任务管理增强版 是免费的吗?

是的,飞书任务管理增强版 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

飞书任务管理增强版 支持哪些平台?

飞书任务管理增强版 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 飞书任务管理增强版?

由 ramlee77(@ramlee77)开发并维护,当前版本 v1.0.1。

💬 留言讨论