← 返回 Skills 市场
113
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install feishu-batch-task
功能描述
Feishu Batch Task Creator - Create multiple tasks at once with templates. **Features**: - Batch create tasks from template - Quick task creation for common p...
使用说明 (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:
- Calculate dates for each day
- Batch create 5 tasks with proper dates and descriptions
- 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_ruleRFC5545 format
安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install feishu-batch-task - 安装完成后,直接呼叫该 Skill 的名称或使用
/feishu-batch-task触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
First release: Batch create tasks from templates
元数据
常见问题
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... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 113 次。
如何安装 Feishu Batch Task Creator?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install feishu-batch-task」即可一键安装,无需额外配置。
Feishu Batch Task Creator 是免费的吗?
是的,Feishu Batch Task Creator 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Feishu Batch Task Creator 支持哪些平台?
Feishu Batch Task Creator 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Feishu Batch Task Creator?
由 ramlee77(@ramlee77)开发并维护,当前版本 v1.0.0。
推荐 Skills