Install
openclaw skills install @ramlee77/feishu-batch-taskFeishu Batch Task Creator - Create multiple tasks at once with templates. **Features**: - Batch create tasks from template - Quick task creation for common patterns - Import tasks from CSV format - Support task templates with default values **Trigger**: - User mentions "batch task", "create multiple tasks", "批量创建任务" - User wants to create many tasks at once
openclaw skills install @ramlee77/feishu-batch-task2026-02-28T17:00:00+08:00| Intent | Tool | action | Required Params |
|---|---|---|---|
| Create single task | feishu_task_task | create | summary |
| Batch create tasks | feishu_bitable_app_table_record | batch_create | app_token, table_id, records |
| Query tasks | feishu_task_task | list | - |
| Complete task | feishu_task_task | patch | task_guid, completed_at |
Create a bitable template first, then batch import:
{
"action": "batch_create",
"app_token": "Mxxx",
"table_id": "Txxx",
"records": [
{"fields": {"任务名称": "任务1", "截止日期": 1740441600000, "负责人": [{"id": "ou_xxx"}]}},
{"fields": {"任务名称": "任务2", "截止日期": 1740528000000, "负责人": [{"id": "ou_yyy"}]}},
{"fields": {"任务名称": "任务3", "截止日期": 1740614400000, "负责人": [{"id": "ou_zzz"}]}}
]
}
Daily Standup Template:
{
"action": "create",
"summary": "每日站会",
"description": "同步昨日完成事项、今日计划、阻塞问题",
"due": {"timestamp": "2026-03-31T18:00:00+08:00", "is_all_day": false},
"repeat_rule": "FREQ=DAILY"
}
Weekly Review Template:
{
"action": "create",
"summary": "周报提交",
"description": "提交本周工作总结",
"due": {"timestamp": "2026-04-04T17:00:00+08:00", "is_all_day": false},
"repeat_rule": "FREQ=WEEKLY;INTERVAL=1;BYDAY=FR"
}
Create a bitable for templates:
| Version | Price | Features |
|---|---|---|
| Free | ¥0 | Single task creation |
| Pro | ¥10/month | Batch create, templates |
| Team | ¥30/month | CSV import, API access |
User says: "帮我批量创建5个任务,分别是需求评审、设计评审、开发评审、测试评审、上线评审,截止日期分别是下周一到周五"
Execute:
{"id": "ou_xxx"} formatrepeat_rule RFC5545 format