Skills2026年3月30日·1 分钟阅读

Lark CLI Skill: Tasks — Todo & Project Management

Lark/Feishu CLI skill for task management. Create todos, track progress, manage subtasks, assign members, set reminders.

Agent 就绪

这个资产会安全暂存

这个资产会先安全暂存。复制的指令会要求 Agent 读取暂存文件,并在激活脚本、MCP 配置或全局配置前先确认。

Stage only · 17/100策略:需暂存
Agent 入口
任意 MCP/CLI Agent
类型
CLI Tool
安装
Stage only
信任
信任等级:Community
入口
Lark CLI Skill: Tasks — Todo & Project Management
安全暂存命令
npx -y tokrepo@latest install e190eb3c-a0a2-45c1-bc9e-5b6cc0de5c5e --target codex

先暂存文件;激活前需要读取暂存 README 和安装计划。

TL;DR
CLI skill that creates, tracks, and manages Lark/Feishu tasks, subtasks, and reminders.
§01

What it is

Lark CLI Skill: Tasks is a command-line skill for the Lark/Feishu CLI that lets you create todos, track progress, manage subtasks, assign team members, and set reminders without leaving the terminal. It is part of the Lark CLI ecosystem with 200+ commands and 19 AI Agent Skills.

The skill targets developers and team leads who use Lark or Feishu for project management and want to interact with their task system programmatically or through AI agents.

§02

How it saves time or tokens

Switching between the terminal and the Lark web interface to create or update tasks breaks flow. This skill keeps you in the terminal, where you can script task creation as part of CI/CD pipelines, post-deployment checklists, or daily standup routines. The structured output can be piped into other tools. The token estimate for this workflow is approximately 500 tokens.

§03

How to use

  1. Install the Lark CLI and tasks skill:
npm install -g @larksuite/cli
npx skills add larksuite/cli -y -g
  1. Configure authentication:
lark-cli config init
lark-cli auth login --recommend
  1. Create and manage tasks:
# Create a new task
lark-cli tasks create --title 'Review PR #42' --assignee alice@company.com

# List open tasks
lark-cli tasks list --status open

# Complete a task
lark-cli tasks complete --task-id <id>
§04

Example

Creating a task with subtasks and a reminder:

# Create parent task
lark-cli tasks create \
  --title 'Q2 Release Prep' \
  --due '2026-04-30' \
  --reminder '2026-04-28T09:00:00'

# Add subtasks
lark-cli tasks add-subtask --parent <id> --title 'Update changelog'
lark-cli tasks add-subtask --parent <id> --title 'Run regression tests'
lark-cli tasks add-subtask --parent <id> --title 'Tag release'
§05

Related on TokRepo

§06

Common pitfalls

  • Task permissions depend on your Lark app scopes; ensure the task read/write scopes are enabled in the Lark Open Platform console
  • Subtask nesting depth is limited by the Lark API; deep hierarchies should be flattened into separate task lists
  • Reminder delivery depends on the assignee's notification settings in Lark; verify notifications are not muted for task updates

常见问题

Can I use this skill to manage tasks for my whole team?+

Yes. You can assign tasks to any team member by email or Lark user ID. Task visibility follows your organization's Lark permissions, so team members see tasks assigned to them in their Lark task inbox.

Does this work with both Lark and Feishu?+

Yes. The Lark CLI supports both Lark (international) and Feishu (China mainland) platforms. Your authentication configuration determines which platform is used. The tasks skill works identically on both.

Can I automate task creation in CI/CD?+

Yes. Since this is a CLI tool, you can call it from GitHub Actions, GitLab CI, or any CI/CD pipeline. For example, create a post-deployment task to verify the release, or generate tasks from test failures.

How do reminders work?+

Reminders are set using ISO 8601 datetime format with the --reminder flag during task creation. The reminder is delivered as a Lark notification to the assignee at the specified time.

Can AI agents like Claude Code use this skill?+

Yes. Claude Code can run lark-cli commands directly in the terminal. You can ask Claude to create tasks, check progress, or update deadlines as part of a development workflow conversation.

引用来源 (3)
🙏

来源与感谢

Created by LarkSuite. Licensed under MIT. larksuite/cli — 4,100+ GitHub stars

Part of the Lark CLI Official Skills Collection on TokRepo.

讨论

登录后参与讨论。
还没有评论,来写第一条吧。

相关资产