Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计提醒

feishu-task-management-skillfeishu task management 技能

Agent Skill

feishu-task-management-skill 用于辅助 Python 项目开发、测试和数据处理,适合在 OpenClaw 中需要阅读 Python 代码、运行测试或整理脚本流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,726

周安装

371

GitHub Stars

公开资料未说明

下载量

3,057
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:feishu-task-management-skill(feishu task management 技能)
来源仓库:https://github.com/owrig/feishu-task-management-skill
安装命令:
openclaw skills install feishu-task-management-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install feishu-task-management-skill

简介

飞书任务管理技能用于辅助 Python 项目开发、测试和数据处理。

  • 适用于阅读代码、运行测试或整理脚本流程的开发需求。
  • 通过 clawhub 安装,需结合来源仓库和 README 确认具体用法。
  • 安装前建议确认权限范围和维护状态,注意是否触发联网或文件读写。
  • 涉及 OAuth 用户令牌时应核对凭据风险和操作边界。

SKILL.md

name
feishu-task-management
description
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 available. Use when Codex needs to create, inspect, update, complete, reopen, delete, or change task members in Feishu Task, especially when member names must be resolved through a locally synced member table and alias mapping instead of ad hoc contact lookups.

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

  1. Confirm the request is about Feishu task management through the local toolkit.
  2. 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

  1. Treat app credentials as mandatory base config. Prefer the configured user_access_token for task APIs when available, but keep contact and member-sync operations on app auth.
  2. If the operation involves people, use the local member table through the toolkit. Do not perform ad hoc contact lookups.
  3. Choose the narrowest task command available instead of composing generic HTTP requests.
  4. For destructive or state-changing operations, inspect the current task first when practical.
  5. 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:

  1. Explicit identifiers: open_id, user_id, email, mobile
  2. Manual alias mapping from feishu-task-management/toolkit/data/member_aliases.json
  3. Exact canonical matches on name, en_name, nickname, and email
  4. 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_at directly.
  • Treat origin as create-only.
  • Clear start and due explicitly 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.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

75.71%
按下载量换算2,314

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills