/install feishu-task-management-skill
Feishu Task Management
Overview
Use this skill to operate Feishu Task through the companion toolkit in feishu-task-management/toolkit/. Keep the core workflow in this file: decide the command, resolve members locally, and apply the write-safety rules without loading extra references unless the request falls into an edge case.
Core Workflow
- Confirm the request is about Feishu task management through the local toolkit.
- Before the first API-backed operation, make sure the toolkit is configured. If not, use:
python3 feishu-task-management/toolkit/scripts/feishu_config.py guide - Treat app credentials as mandatory base config. Prefer the configured
user_access_tokenfor task APIs when available, but keep contact and member-sync operations on app auth. - If the operation involves people, use the local member table through the toolkit. Do not perform ad hoc contact lookups.
- Choose the narrowest task command available instead of composing generic HTTP requests.
- For destructive or state-changing operations, inspect the current task first when practical.
- Stop if member resolution is ambiguous or missing.
Command Routing
Member Table Maintenance
- Sync the authorized contact scope:
python3 feishu-task-management/toolkit/scripts/feishu_members.py sync - Inspect sync state:
python3 feishu-task-management/toolkit/scripts/feishu_members.py stats - Test a member lookup:
python3 feishu-task-management/toolkit/scripts/feishu_members.py resolve --query "张三" - Validate manual aliases:
python3 feishu-task-management/toolkit/scripts/feishu_members.py validate-aliases
Toolkit Configuration
- Show configuration guidance:
python3 feishu-task-management/toolkit/scripts/feishu_config.py guide - Write a local runtime config:
python3 feishu-task-management/toolkit/scripts/feishu_config.py set --app-id ... --app-secret ... - Extend the config with existing user OAuth tokens:
python3 feishu-task-management/toolkit/scripts/feishu_config.py set --app-id ... --app-secret ... --user-access-token ... - Inspect effective config:
python3 feishu-task-management/toolkit/scripts/feishu_config.py show - Validate current config:
python3 feishu-task-management/toolkit/scripts/feishu_config.py validate
Read Operations
- Get one task:
python3 feishu-task-management/toolkit/scripts/feishu_task.py get --task-guid ... - List tasks:
python3 feishu-task-management/toolkit/scripts/feishu_task.py list
Write Operations
- Create a task:
python3 feishu-task-management/toolkit/scripts/feishu_task.py create --summary ... - Update core fields:
python3 feishu-task-management/toolkit/scripts/feishu_task.py update --task-guid ... - Complete a task:
python3 feishu-task-management/toolkit/scripts/feishu_task.py complete --task-guid ... - Reopen a task:
python3 feishu-task-management/toolkit/scripts/feishu_task.py reopen --task-guid ... - Add members:
python3 feishu-task-management/toolkit/scripts/feishu_task.py add-members --task-guid ... --member ... - Remove members:
python3 feishu-task-management/toolkit/scripts/feishu_task.py remove-members --task-guid ... --member ... - Delete a task:
python3 feishu-task-management/toolkit/scripts/feishu_task.py delete --task-guid ... --yes
Member Resolution
Use local resolution only, in this order:
- Explicit identifiers:
open_id,user_id,email,mobile - Manual alias mapping from
feishu-task-management/toolkit/data/member_aliases.json - Exact canonical matches on
name,en_name,nickname, and email - Limited fuzzy matching
Apply these safety rules:
- Zero matches: stop and report that the member table or aliases need updating.
- One match: proceed.
- Multiple matches: stop and return the candidate list.
If the authorized scope only yields identifier fields without profile fields, natural-language matching depends on manual aliases. This does not change when task APIs later use a user token.
Write Safety Rules
- Use the toolkit instead of constructing raw HTTP requests in the skill body.
- Prefer dedicated commands over generic update payloads when a command exists.
- Use dedicated completion commands instead of editing
completed_atdirectly. - Treat
originas create-only. - Clear
startanddueexplicitly instead of relying on omission. - Require explicit confirmation before deletion.
Supported v1 Scope
- Create task
- Get task
- List tasks
- Update summary, description, start, and due
- Delete task
- Complete task
- Reopen task
- Add members
- Remove members
The following are intentionally out of scope for v1:
- reminders
- tasklists
- dependencies
- repeat rules
- custom complete
- attachments
Conditional References
Load extra context only when the request falls off the main path:
- Read member-sync-troubleshooting.md only when member sync, alias validation, or authorized-scope coverage is the problem.
- Read task-edge-cases.md only when handling time-field clearing,
origin, completion semantics, or deferred task features. - Read permission-errors.md only when a task operation fails with permission-related behavior such as
1470403. - Read api-alignment.md only when changing toolkit payloads or aligning CLI defaults to newer Feishu API samples.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install feishu-task-management-skill - 安装完成后,直接呼叫该 Skill 的名称或使用
/feishu-task-management-skill触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
feishu-task-management-skill 是什么?
Manage Feishu tasks through a local Python toolkit that always has app credentials and can optionally act as a user for task APIs when OAuth user tokens are... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 297 次。
如何安装 feishu-task-management-skill?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install feishu-task-management-skill」即可一键安装,无需额外配置。
feishu-task-management-skill 是免费的吗?
是的,feishu-task-management-skill 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
feishu-task-management-skill 支持哪些平台?
feishu-task-management-skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 feishu-task-management-skill?
由 @_@(@owrig)开发并维护,当前版本 v0.0.1。