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 读取暂存文件,并在激活脚本、MCP 配置或全局配置前先确认。
npx -y tokrepo@latest install e190eb3c-a0a2-45c1-bc9e-5b6cc0de5c5e --target codex先暂存文件;激活前需要读取暂存 README 和安装计划。
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.
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.
How to use
- Install the Lark CLI and tasks skill:
npm install -g @larksuite/cli
npx skills add larksuite/cli -y -g
- Configure authentication:
lark-cli config init
lark-cli auth login --recommend
- 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>
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'
Related on TokRepo
- AI Tools for Task Management — more tools for project tracking and todo management
- AI Tools for Automation — CLI-based automation scripts and workflows
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
常见问题
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.
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.
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.
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.
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)
- Lark CLI GitHub— Lark CLI with 200+ commands and AI Agent Skills
- Lark Developer Docs— Lark task management API
- Lark Open Platform— Lark Open Platform for developers
来源与感谢
Created by LarkSuite. Licensed under MIT. larksuite/cli — 4,100+ GitHub stars
Part of the Lark CLI Official Skills Collection on TokRepo.
讨论
相关资产
Lark CLI Skill: Skill Maker — Create Custom Skills
Lark/Feishu CLI skill for creating reusable custom skills. Wrap atomic APIs or orchestrate multi-step workflows.
Lark CLI Skill: Wiki — Knowledge Base Management
Lark/Feishu CLI skill for knowledge base. Create and manage knowledge spaces, organize document nodes and shortcuts.
Lark CLI Skill: Docs — Document Creation & Editing
Lark/Feishu CLI skill for cloud documents. Create from Markdown, read/update content, insert images, search documents.
Lark CLI Skill: Standup Report Workflow
Lark/Feishu CLI workflow skill. Combines calendar agenda and tasks to generate daily/weekly standup summaries.