← Back to Skills Marketplace
飞书多维表格 AI 管家
by
Young-Joey
· GitHub ↗
· v1.0.0
· MIT-0
16
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install feishu-bitable-butler
Description
飞书多维表格 AI 管家 — 自动化多维表格的数据清洗、批量录入、报表生成、字段管理和智能摘要。当用户需要操作飞书多维表格(Bitable)、批量处理表格数据、自动生成报表/周报、清洗整理数据、或管理多维表格结构时使用。触发词:多维表格、Bitable、飞书表格、自动报表、批量录入、数据清洗、飞书数据。
README (SKILL.md)
飞书多维表格 AI 管家
自动化飞书多维表格(Bitable)操作,让 Agent 成为你的表格管家。
核心能力
1. 表格结构管理
- 创建多维表格应用和表
- 增删字段(文本/数字/单选/多选/日期/人员/链接等)
- 查看表格元数据和字段列表
2. 数据批量操作
- 批量创建记录(支持格式自动适配)
- 批量更新记录
- 分页查询和遍历
3. 智能报表生成
- 从表格提取数据 → 生成摘要
- 按条件筛选 + 统计分析
- 自动写入报表结果到新表/新字段
4. 数据清洗
- 格式标准化
- 去重检测
- 空值/异常值标记
快速开始
场景 1:接到一个飞书表格链接,不知道里面有什么
用户:帮我看看这个表格 https://abc.feishu.cn/base/XXX?table=YYY
操作流程:
feishu_bitable_get_meta解析 URL → 获取 app_token + table_id + 表列表feishu_bitable_list_fields列出所有字段feishu_bitable_list_records读取前 20 条数据- 总结表结构 + 数据概况
场景 2:批量录入数据
用户:帮我在"客户跟进表"里录入这 5 条记录
张三 | 138xxxx | 意向客户 | 2026-05-07
李四 | 139xxxx | 已成交 | 2026-05-06
...
操作流程:
- 先用
feishu_bitable_list_fields确认字段名和类型 - 按字段类型格式化数据:
- 文本:直接传字符串
- 单选:传选项文本(如
"意向客户") - 多选:传数组
["A", "B"] - 日期:传毫秒时间戳或 ISO 字符串
- 逐条/批量调用
feishu_bitable_create_record - 完成后回报录入结果
场景 3:从表格生成周报
用户:根据"本周任务"表给我生成周报
操作流程:
feishu_bitable_list_fields了解字段feishu_bitable_list_records抓取全部记录(翻页直到无更多数据)- 分析数据:完成数、未完成数、关键成果
- 格式化输出报告
- 可选:用
feishu_bitable_create_record将报告写入"周报"表
场景 4:数据清洗
用户:帮我检查"员工信息表"里的数据有没有问题
操作流程:
- 读取全量数据
- 检查:空字段、手机号格式、日期范围、选项值是否在有效范围内
- 标记异常记录
- 可选:用
feishu_bitable_update_record在"数据状态"字段标记
字段类型速查
| 类型ID | 名称 | 数据格式 |
|---|---|---|
| 1 | 文本 | "字符串" |
| 2 | 数字 | 123 |
| 3 | 单选 | "选项名" |
| 4 | 多选 | ["选项A", "选项B"] |
| 5 | 日期 | 毫秒时间戳(如 1715040000000) |
| 7 | 复选框 | true/false |
| 11 | 人员 | [{id: "ou_xxx"}] |
| 13 | 手机号 | "138xxxx" |
| 15 | 链接 | {text: "显示", link: "https://..."} |
| 17 | 附件 | 文件token数组 |
| 22 | 位置 | 经纬度对象 |
最佳实践
- 先看结构再动数据 — 每次操作前先
list_fields确认字段名和类型 - 翻页完整 —
list_records支持page_token翻页,确保读完所有数据 - 批量优于逐条 — 多条数据合并为一次讲话,避免逐条单独调用
- 写后验证 — 批量录入后抽样
get_record验证 - 异常先标记不直接删 — 数据清洗时优先标记问题,由人确认后再处理
注意事项
- 需要飞书应用有 Bitable 权限(
bitable:appscope) - 操作前确保 app_token 和 table_id 正确(从 URL 提取或由用户提供)
- 大表操作注意分页,单页最多 500 条
Usage Guidance
Install only if you want an agent to manage Feishu Bitable data. Use least-privilege Feishu access, confirm the exact app_token, table_id, fields, and record counts, ask for a dry run before any write, and require explicit approval before bulk updates, field deletion, or posting reports to chat.
Capability Analysis
Type: OpenClaw Skill
Name: feishu-bitable-butler
Version: 1.0.0
The skill bundle is a legitimate automation tool for Feishu Bitable (multi-dimensional tables). It provides clear instructions (SKILL.md) and technical references (field-types.md) for an AI agent to perform data cleaning, batch entry, and report generation. There is no evidence of malicious intent, data exfiltration, or harmful prompt injection; all operations are restricted to the stated purpose of managing Bitable records and structures.
Capability Assessment
Purpose & Capability
The Feishu Bitable automation purpose is coherent, but the described capabilities include broad reads, batch writes, updates, and field deletion, which can materially affect business data.
Instruction Scope
The instructions recommend checking fields first and marking anomalies before deletion, but they do not consistently require user confirmation, previews, backups, or rollback plans before schema or bulk record mutations.
Install Mechanism
There is no install script or code in the provided artifacts, and the static scanner reported no findings. Runtime Feishu tool implementations are outside the provided artifact set.
Credentials
The skill needs Feishu Bitable account permissions, which are expected for its purpose, but the registry metadata does not declare a primary credential or capability contract.
Persistence & Privilege
No background persistence or self-running behavior is shown. The main privilege issue is delegated Feishu Bitable access.
How to Use
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install feishu-bitable-butler - After installation, invoke the skill by name or use
/feishu-bitable-butler - Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
MVP首发
Metadata
Frequently Asked Questions
What is 飞书多维表格 AI 管家?
飞书多维表格 AI 管家 — 自动化多维表格的数据清洗、批量录入、报表生成、字段管理和智能摘要。当用户需要操作飞书多维表格(Bitable)、批量处理表格数据、自动生成报表/周报、清洗整理数据、或管理多维表格结构时使用。触发词:多维表格、Bitable、飞书表格、自动报表、批量录入、数据清洗、飞书数据。 It is an AI Agent Skill for Claude Code / OpenClaw, with 16 downloads so far.
How do I install 飞书多维表格 AI 管家?
Run "/install feishu-bitable-butler" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is 飞书多维表格 AI 管家 free?
Yes, 飞书多维表格 AI 管家 is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does 飞书多维表格 AI 管家 support?
飞书多维表格 AI 管家 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created 飞书多维表格 AI 管家?
It is built and maintained by Young-Joey (@young-joey); the current version is v1.0.0.
More Skills