Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
alextangson avatar

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)
At a glance

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
From the docs

What feishu-task says it does

飞书任务。创建任务、更新任务、查询任务。
SKILL.md
**Base URL**: `https://open.feishu.cn/open-apis/task/v2`
SKILL.md
npx skills add https://github.com/alextangson/feishu_skills --skill feishu-task

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs87
repo stars65
Last updatedMarch 26, 2026
Repositoryalextangson/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

SKILL.mdMarkdownGitHub ↗

飞书任务

通过 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_ID
  • FEISHU_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.

Backend & APIspmworkflow

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.