一键导入
feishu-task
When 飞书任务 (tasks/todos) need managing → CRUD tasks, subtasks, and task lists.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
When 飞书任务 (tasks/todos) need managing → CRUD tasks, subtasks, and task lists.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
When prompt, tool, or agent logic changes need regression testing → run eval benchmarks to detect regressions or improvements.
When a task can be parallelized (bulk code review, multi-module refactor, batch analysis) → split into subtasks running in isolated git worktrees via multiple workers.
When the user wants to research academic papers → search ArXiv, extract PDFs, summarize/review/Q&A, generate experiment code.
When you need to interact with web pages using the user's logged-in browser → control Chrome via @playwright/cli daemon, reusing cookies/session with persistent tabs.
When user needs AnyGenIO content generation → unified CLI for task execution with progressive disclosure.
When you need to persist files (reports, docs, evidence) beyond the session → create/query/delete durable artifacts.
| name | feishu-task |
| description | When 飞书任务 (tasks/todos) need managing → CRUD tasks, subtasks, and task lists. |
| triggers | {"intent_patterns":["任务|待办|task|todo","创建任务|完成任务|任务清单|子任务","帮我.*记一下|note.*this|加.*待办|add.*todo","我.*要做|I need to|还有.*没做|not.*done.*yet","分配.*任务|assign.*task|指派|delegate.*to","任务.*进度|task.*progress|完成.*情况|completion.*status","今天.*要做|today.*todo|优先级|priority|截止.*日期|deadline|due.*date"],"context_signals":{"keywords":["task","任务","待办","todo","subtask","tasklist","进度","优先级","截止","分配","deadline","priority"]},"confidence_threshold":0.5} |
| priority | 9 |
| requires_tools | ["bash"] |
| max_tokens | 300 |
| cooldown | 15 |
| 用户意图 | module | tool_action | 必填参数 |
|---|---|---|---|
| 列出任务 | task | list | - |
| 创建任务 | task | create | summary |
| 更新任务 | task | update | task_id + 字段 |
| 删除任务 | task | delete | task_id |
| 列出子任务 | task | list_subtasks | parent_task_id |
| 创建子任务 | task | create_subtask | task_id, summary |
python3 skills/feishu-cli/run.py '{
"action": "tool",
"module": "task",
"tool_action": "create",
"summary": "完成 Q1 OKR 回顾",
"due_date": "2026-03-15",
"description": "回顾 Q1 各项 KR 的完成情况",
"assignee_ids": ["ou_xxx"]
}'
python3 skills/feishu-cli/run.py '{"action":"tool","module":"task","tool_action":"list"}'
# 通过 complete 动作直接标记完成(推荐)
python3 skills/feishu-cli/run.py '{
"action": "tool",
"module": "task",
"tool_action": "complete",
"task_id": "t_xxx"
}'
python3 skills/feishu-cli/run.py '{
"action": "tool",
"module": "task",
"tool_action": "create_subtask",
"task_id": "t_xxx",
"summary": "整理 KR1 数据"
}'
auth oauth_url → 登录 → auth exchange_code)"2026-03-15" 或 "2026-03-15 18:00" 等字符串ou_ 开头),数组格式complete 动作;撤销完成用 uncomplete 动作;update 不支持 status 字段