← 返回 Skills 市场
Feishu Bitable Ops
作者
bbj375767338-arch
· GitHub ↗
· v1.0.0
· MIT-0
131
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install feishu-bitable-ops
功能描述
飞书多维表格(Bitable)操作技能。处理 wiki URL 与 base URL 的 token 区分、字段类型写入格式、批量操作。当需要读写飞书多维表格、创建记录、查询数据、管理字段时使用。
使用说明 (SKILL.md)
飞书多维表格操作
核心原则
Wiki URL ≠ 直接可用:/wiki/ 链接里的 token 是 node_token,不是 app_token,必须先解析。
URL 解析规则
| URL 格式 | Token 类型 | 处理方式 |
|---|---|---|
.../base/AppToken |
直接就是 app_token |
可直接用 |
.../wiki/NodeToken |
node_token |
必须用 feishu_wiki_space_node get 解析出 obj_token |
# wiki URL → 获取真实 app_token
feishu_wiki_space_node(action="get", token="NodeToken")
# 返回的 obj_token 才是 bitable 的 app_token
操作流程
1. 获取 app_token
# base URL(直链)
app_token = "AppToken"(直接用)
# wiki URL
obj_token = feishu_wiki_space_node(get, token="NodeToken").obj_token
app_token = obj_token
2. 获取 table_id 和字段结构
# 列出所有数据表
feishu_bitable_app_table(action="list", app_token="app_token")
# 列出所有字段(字段名 + 类型)
feishu_bitable_app_table_field(action="list", app_token="app_token", table_id="table_id")
3. CRUD 操作
# 查记录(支持筛选、排序、分页)
feishu_bitable_app_table_record(action="list", app_token="app_token", table_id="table_id", filter=..., sort=..., page_size=50)
# 写入单条记录
feishu_bitable_app_table_record(action="create", app_token="app_token", table_id="table_id", fields={...})
# 批量写入(最多500条/次)
feishu_bitable_app_table_record(action="batch_create", app_token="app_token", table_id="table_id", records=[...])
# 更新记录
feishu_bitable_app_table_record(action="update", app_token="app_token", table_id="table_id", record_id="recxxx", fields={...})
# 删除记录
feishu_bitable_app_table_record(action="delete", app_token="app_token", table_id="table_id", record_id="recxxx")
字段类型写入格式
| 类型 | type 值 | 写入格式 | 示例 |
|---|---|---|---|
| 文本 | 1 | "字符串" |
"版本 v1.0" |
| 数字 | 2 | 数字 |
123 或 45.6 |
| 单选 | 3 | "选项名" |
"Beta" |
| 多选 | 4 | ["选项A","选项B"] |
["A","B"] |
| 日期 | 5 | 毫秒时间戳 |
1746070800000 |
| 复选框 | 7 | true / false |
true |
| 人员 | 11 | [{id: "ou_xxx"}] |
[{id: "ou_39e815b447d128baf299b7cc6be9f1db"}] |
| 超链接 | 15 | {text: "显示文本", link: "https://..."} |
{text: "文档", link: "https://..."} |
| 附件 | 17 | 不支持写入 | — |
日期时间戳:如需设为指定时间,用 new Date("2026-04-13T17:00:00+08:00").getTime() 生成。
批量操作
# 批量创建(单次最多500条)
records = [
{fields: {"字段1": "值1", "字段2": "值2"}},
{fields: {"字段1": "值3", "字段2": "值4"}}
]
feishu_bitable_app_table_record(action="batch_create", app_token="app_token", table_id="table_id", records=records)
常见错误
| 错误 | 原因 | 解决 |
|---|---|---|
91402 NOTEXIST |
用 wiki node_token 当 app_token | 先用 wiki get 解析 |
131005 not found |
table_id 错误 | 先 list 确认 table_id |
99991672 Access denied |
应用没有多维表格权限 | 飞书开放平台开通 bitable:app 权限 |
WrongRequestBody(字段创建) |
超链接字段传了 property | 超链接 type=15 时不要传 property |
多维表格 URL 格式
- Base 直链:
https://xxx.feishu.cn/base/AppToken?table=tblXXX - Wiki 嵌入:
https://xxx.feishu.cn/wiki/NodeToken
从浏览器地址栏复制链接时,一定要注意区分是 /base/ 还是 /wiki/。
安全使用建议
This skill is coherent for Feishu Bitable operations, but before installing confirm the runtime environment provides the feishu_* action primitives (feishu_wiki_space_node, feishu_bitable_app_table*, etc.) the instructions expect. The skill does not declare where tokens come from — ensure you supply app_token/node_token securely (prefer short-lived or scoped tokens), and verify the connector implementation is from a trusted source. Avoid pasting full long-lived admin tokens into chat; test with a limited-permission account first. If you do not have a preexisting Feishu connector, the SKILL.md alone does not implement API calls and won't function by itself.
功能分析
Type: OpenClaw Skill
Name: feishu-bitable-ops
Version: 1.0.0
The skill bundle provides documentation and instructions for an AI agent to interact with Feishu Bitable (multi-dimensional tables). It focuses on correctly parsing Feishu Wiki vs. Base URLs and performing standard CRUD operations using predefined functions like `feishu_bitable_app_table_record`. No evidence of data exfiltration, malicious execution, or prompt injection was found in SKILL.md or _meta.json.
能力评估
Purpose & Capability
The name/description (Feishu Bitable operations) match the SKILL.md: it documents token distinctions (wiki node_token vs app_token), how to list tables/fields, and CRUD/batch operations and field formats. Nothing requested or described goes beyond operating Bitable.
Instruction Scope
Instructions are narrowly scoped to parsing tokens, calling Feishu bitable APIs (feishu_bitable_app_table*, feishu_bitable_app_table_record*, feishu_wiki_space_node) and formatting field values. They do not instruct reading unrelated files, environment variables, or exfiltrating data to third-party endpoints.
Install Mechanism
This is an instruction-only skill with no install spec and no code files, so it does not introduce download/installation risks.
Credentials
The SKILL.md relies on tokens (app_token / node_token) being provided at runtime but the skill declares no required env vars or primary credential. This is plausible (tokens can be passed as arguments), but it means the runtime must supply the necessary feishu credentials or connector tools; verify how tokens are injected and that long-lived secrets are not pasted into an untrusted channel.
Persistence & Privilege
Skill is not always-enabled and does not request system-level persistence or modify other skills. Autonomous invocation is allowed (platform default) but not combined with broad credential access or other red flags.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install feishu-bitable-ops - 安装完成后,直接呼叫该 Skill 的名称或使用
/feishu-bitable-ops触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
feishu-bitable-ops 1.0.0 初始发布
- 新增飞书多维表格(Bitable)操作指南,支持解析 wiki URL 与 base URL 的 token 区分。
- 详细说明表格 CRUD(增删查改)操作及批量写入流程。
- 提供字段类型写入格式与常见错误解决方法。
- 适用于需求:读写飞书多维表格、创建记录、查询数据、管理字段。
元数据
常见问题
Feishu Bitable Ops 是什么?
飞书多维表格(Bitable)操作技能。处理 wiki URL 与 base URL 的 token 区分、字段类型写入格式、批量操作。当需要读写飞书多维表格、创建记录、查询数据、管理字段时使用。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 131 次。
如何安装 Feishu Bitable Ops?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install feishu-bitable-ops」即可一键安装,无需额外配置。
Feishu Bitable Ops 是免费的吗?
是的,Feishu Bitable Ops 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Feishu Bitable Ops 支持哪些平台?
Feishu Bitable Ops 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Feishu Bitable Ops?
由 bbj375767338-arch(@bbj375767338-arch)开发并维护,当前版本 v1.0.0。
推荐 Skills