安全扫描
OpenClaw
安全
high confidence仅指令型飞书/Bitable助手,指令、范围和要求与其声明的目的一致,不请求无关的凭证或安装。
评估建议
此技能逻辑一致,似乎仅指示代理创建飞书任务和Bitable记录。启用前:1) 确认代理/平台具有飞书集成,知道将使用的飞书凭证(app_token或账户级令牌)及其范围(任务/表的创建/列表/修补)。2) 验证代理将访问消息发送者ID(ou_...)并且传递的人员ID映射到组织中的预期用户。3) 在沙盒工作空间中测试(尤其是使用批量创建最多500条记录)以避免意外的大规模创建。4) 如果需要审计性,确保创建的任务被记录或技能的操作在操作历史中可见。...详细分析 ▾
✓ 用途与能力
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.
✓ 指令范围
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.
✓ 安装机制
No install spec and no code files — this is instruction-only, so nothing is written to disk or downloaded. Lowest-risk install posture.
ℹ 凭证需求
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.
✓ 持久化与权限
always:false and no install steps or modifications to other skills/settings. The skill does not request persistent presence or elevated platform privileges.
安全有层次,运行前请审查代码。
运行时依赖
无特殊依赖
版本
latestv1.0.02026/3/31
首次发布:从模板批量创建任务
● 无害
安装命令 点击复制
官方npx clawhub@latest install feishu-batch-task
镜像加速npx clawhub@latest install feishu-batch-task --registry https://cn.clawhub-mirror.com
技能文档
飞书批量任务创建器
⚠️ 前置条件
- ✅ 时间格式:ISO 8601 / RFC 3339 (含时区),例如
2026-02-28T17:00:00+08:00 - ✅ current_user_id 必需:从消息上下文 SenderId (ou_...) 获取
- ✅ 使用 batch_create 进行多任务创建:一次最多 500 条记录
📋 快速参考
| 意图 | 工具 | 操作 | 必需参数 |
|---|---|---|---|
| 创建单个任务 | feishu_task_task | create | summary |
| 批量创建任务 | feishu_bitable_app_table_record | batch_create | app_token, table_id, records |
| 查询任务 | feishu_task_task | list | - |
| 完成任务 | feishu_task_task | patch | task_guid, completed_at |
🛠️ 使用方法
1. 通过 Bitable 批量创建任务
先创建 Bitable 模板,然后批量导入:{ "action": "batch_create", "app_token": "Mxxx", "table_id": "Txxx", "records": [ {"fields": {"任务名称": "任务1", "截止日期": 1740441600000, "负责人": [{"id": "ou_xxx"}]}} ] }
2. 常见任务模板
每日站会模板:{ "action": "create", "summary": "每日站会", "description": "同步昨日完成事项、今日计划、阻塞问题", "due": {"timestamp": "2026-03-31T18:00:00+08:00", "is_all_day": false}, "repeat_rule": "FREQ=DAILY" }
周报提交模板:
{ "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. 任务模板 Bitable
创建任务模板 Bitable:- 字段:任务名称 (文本)
- 字段:任务描述 (文本)
- 字段:截止日期 (日期)
- 字段:负责人 (人员)
- 字段:优先级 (单选:高/中/低)
- 字段:所属清单 (文本)
💰 定价
| 版本 | 价格 | 功能 |
|---|---|---|
| 免费 | ¥0 | 单任务创建 |
| 专业 | ¥10/月 | 批量创建、模板 |
| 团队 | ¥30/月 | CSV 导入、API 访问 |
📝 示例
用户说:"帮我批量创建5个任务,分别是需求评审、设计评审、开发评审、测试评审、上线评审,截止日期分别是下周一到周五" 执行:1. 计算每天的日期 2. 使用适当的日期和描述批量创建 5 个任务 3. 返回创建的任务列表🔧 提示
- 对于大批量操作,使用 Bitable (一次最多 500 条)
- 日期字段:使用毫秒时间戳 (例如 1740441600000)
- 人员字段:使用
{"id": "ou_xxx"}格式 - 对于重复任务,使用
repeat_ruleRFC5545 格式
数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制
免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制