
Feishu Task
- 87 installs
- 65 repo stars
- Updated March 26, 2026
- alextangson/feishu_skills
feishu-task is a Claude skill that creates, updates, queries, and completes Feishu (Lark) tasks through the Task v2 API.
About
feishu-task is a Claude skill that manages Feishu (Lark) tasks through the Task v2 REST API. A developer uses it when an agent needs to create, update, query, complete, or delete tasks in Feishu. It documents the endpoints, request bodies, token retrieval via a shared script, and the app-id/app-secret environment variables.
- Create, update, query, complete, and delete Feishu (Lark) tasks via the Task v2 API
- Handles OAuth token fetch, caching, and 401 refresh through a shared script
- Assign tasks with members, roles (assignee/follower), and second-level due timestamps
Feishu Task by the numbers
- 87 all-time installs (skills.sh)
- Ranked #3,031 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
- Data as of Jul 28, 2026 (Skillselion catalog sync)
feishu-task capabilities & compatibility
Free; requires Feishu app credentials (FEISHU_APP_ID, FEISHU_APP_SECRET).
- Capabilities
- task crud · api integration
- Use cases
- api development · project management
- Pricing
- Free
What feishu-task says it does
飞书任务。创建任务、更新任务、查询任务。
**Base URL**: `https://open.feishu.cn/open-apis/task/v2`
npx skills add https://github.com/alextangson/feishu_skills --skill feishu-taskAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 87 |
|---|---|
| repo stars | ★ 65 |
| Last updated | March 26, 2026 |
| Repository | alextangson/feishu_skills ↗ |
What it does
Let an agent manage Feishu/Lark tasks (create, update, complete, delete) through the Task v2 REST API.
Who is it for?
Automating Feishu/Lark task management from an agent
Skip if: Non-Feishu task systems or general project management
When should I use this skill?
You need to create or update tasks inside Feishu (Lark)
What you get
Tasks are created, assigned, and completed in Feishu through the Task v2 API.
- Created or updated Feishu tasks
By the numbers
- 5 documented task API endpoints (create, get, update, complete, delete)
Files
飞书任务
通过 Task API 管理任务。
Base URL: https://open.feishu.cn/open-apis/task/v2
认证与 Token 获取
从 feishu_skills 根目录执行共享脚本:
TOKEN="$(./scripts/get_feishu_token.sh)"请求头统一使用 Authorization: Bearer ${TOKEN}。
如果业务接口返回 token 无效、过期或 401,强制刷新后仅重试一次原请求:
TOKEN="$(./scripts/get_feishu_token.sh --force-refresh)"环境变量:
FEISHU_APP_IDFEISHU_APP_SECRET
本地缓存: ./.feishu_token_cache.json(未过期直接复用,默认提前 5 分钟刷新)
---
任务操作
| API | 端点 | 说明 |
|---|---|---|
| 创建任务 | POST /tasks | - |
| 获取任务 | GET /tasks/{task_guid} | - |
| 更新任务 | PATCH /tasks/{task_guid} | - |
| 完成任务 | POST /tasks/{task_guid}/complete | - |
| 删除任务 | DELETE /tasks/{task_guid} | - |
创建任务:
{
"summary": "任务标题",
"description": "任务描述",
"due": {"timestamp": "1770508800"},
"members": [{"id": "ou_xxx", "role": "assignee"}]
}---
最佳实践
1. due 用秒级时间戳 2. members 指定角色(assignee/follower)
Related skills
FAQ
What Feishu API does feishu-task use?
It uses the Feishu Task v2 API at https://open.feishu.cn/open-apis/task/v2.
What environment variables does it need?
It needs FEISHU_APP_ID and FEISHU_APP_SECRET, and fetches a token via a shared get_feishu_token.sh script.