← Back to Skills Marketplace
ramlee77

Feishu Batch Task Creator

by ramlee77 · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
113
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install feishu-batch-task
Description
Feishu Batch Task Creator - Create multiple tasks at once with templates. **Features**: - Batch create tasks from template - Quick task creation for common p...
README (SKILL.md)

Feishu Batch Task Creator

⚠️ Pre-requisites

  • Time format: ISO 8601 / RFC 3339 (with timezone), e.g. 2026-02-28T17:00:00+08:00
  • current_user_id required: Get from message context SenderId (ou_...)
  • Use batch_create for multiple tasks: Up to 500 records at once

📋 Quick Reference

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

🛠️ Usage

1. Batch Create Tasks via Bitable

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"}]}}
  ]
}

2. Common Task Templates

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"
}

3. Task Template Bitable

Create a bitable for templates:

  • Field: 任务名称 (Text)
  • Field: 任务描述 (Text)
  • Field: 截止日期 (Date)
  • Field: 负责人 (Person)
  • Field: 优先级 (Single Select: 高/中/低)
  • Field: 所属清单 (Text)

💰 Pricing

Version Price Features
Free ¥0 Single task creation
Pro ¥10/month Batch create, templates
Team ¥30/month CSV import, API access

📝 Example

User says: "帮我批量创建5个任务,分别是需求评审、设计评审、开发评审、测试评审、上线评审,截止日期分别是下周一到周五"

Execute:

  1. Calculate dates for each day
  2. Batch create 5 tasks with proper dates and descriptions
  3. Return created task list

🔧 Tips

  • Use bitable for large batch operations (up to 500 at once)
  • Date fields: use millisecond timestamp (e.g., 1740441600000)
  • Person fields: use {"id": "ou_xxx"} format
  • For repeating tasks, use repeat_rule RFC5545 format
Usage Guidance
This skill is coherent and appears to only instruct the agent to create Feishu tasks and bitable records. Before enabling: 1) confirm your agent/platform has a Feishu integration and know which Feishu credentials will be used (app_token or account-level token) and that those credentials have only the needed scopes (create/list/patch on tasks/tables). 2) Verify that the agent will have access to message SenderId (ou_...) and that person IDs you pass map to expected users in your org. 3) Test in a sandbox workspace first (especially when using batch_create up to 500 records) to avoid accidental mass creation. 4) If you require auditability, ensure created tasks are logged or that the skill's actions are visible in an action history.
Capability Analysis
Type: OpenClaw Skill Name: feishu-batch-task Version: 1.0.0 The skill bundle provides legitimate instructions and templates for automating batch task creation within the Feishu (Lark) platform. It utilizes standard Feishu API tools (feishu_task_task and feishu_bitable_app_table_record) and contains no evidence of data exfiltration, malicious execution, or harmful prompt injection in SKILL.md.
Capability Assessment
Purpose & Capability
The name/description (batch-creating Feishu tasks and using Bitable) matches the SKILL.md instructions which describe using feishu_task_task and feishu_bitable_app_table_record actions, templates, timestamps, and person IDs. Nothing requested or described appears unrelated to batch task creation.
Instruction Scope
All runtime instructions stay within the task creation domain: building records, calculating dates, and calling batch_create/create/list/patch actions. The SKILL.md references the message SenderId (current_user_id) which is reasonable for assigning owners; it does not instruct reading unrelated files or system secrets.
Install Mechanism
No install spec and no code files — this is instruction-only, so nothing is written to disk or downloaded. Lowest-risk install posture.
Credentials
The skill declares no required env vars or credentials, which is fine for an instruction-only skill that relies on platform-provided Feishu integrations. The SKILL.md does show parameters like app_token and table_id (and uses person ids like ou_...), so the platform/tool layer must supply Feishu auth or the calling user must provide tokens at runtime. Verify which credentials the platform will use and that they have minimal scope (task/table create) before enabling.
Persistence & Privilege
always:false and no install steps or modifications to other skills/settings. The skill does not request persistent presence or elevated platform privileges.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install feishu-batch-task
  3. After installation, invoke the skill by name or use /feishu-batch-task
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
First release: Batch create tasks from templates
Metadata
Slug feishu-batch-task
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Feishu Batch Task Creator?

Feishu Batch Task Creator - Create multiple tasks at once with templates. **Features**: - Batch create tasks from template - Quick task creation for common p... It is an AI Agent Skill for Claude Code / OpenClaw, with 113 downloads so far.

How do I install Feishu Batch Task Creator?

Run "/install feishu-batch-task" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Feishu Batch Task Creator free?

Yes, Feishu Batch Task Creator is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Feishu Batch Task Creator support?

Feishu Batch Task Creator is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Feishu Batch Task Creator?

It is built and maintained by ramlee77 (@ramlee77); the current version is v1.0.0.

💬 Comments