원클릭으로
feishu-bitable
Feishu multi-dimensional table (Bitable) operations. Activate when user mentions tables, databases, or bitable links.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Feishu multi-dimensional table (Bitable) operations. Activate when user mentions tables, databases, or bitable links.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
主流APP搜索。当用户想要在拼多多、美团、高德地图、抖音、快手、小红书、哔哩哔哩、知乎、百度、OPPO音乐、OPPO软件商店等APP中搜索时激活。覆盖电商购物、生活服务、短视频内容、知识搜索、音乐搜索、应用商店搜索等场景。
CapCut (剪映) one-tap video creation on Android. Always clear A_latest first (copy_images_to_album clear-only), then retrieve by time (list_gallery_images) or content (image-memories). Copy to A_latest (clear_album_first), CapCut 照片视频 → A_latest → 全部, multi_tap, N=K.
Configure messaging channels in X-OmniClaw, including Feishu and Discord. Use when the user asks to configure, enable, disable, inspect, or fix channel settings such as tokens, appId/appSecret, dmPolicy, groupPolicy, requireMention, or connection status. For X-OmniClaw, these settings live in /sdcard/.xomniclaw/xomniclaw.json under channels.*.
将剪切板中的 App 跳转链接制作成一个可复用的快捷指令 Skill,下次用户说出 Skill 名称即可一键直达对应 App 页面。 当用户说"把剪切板的链接做成skill"、"帮我保存这个链接为快捷方式"、"用剪切板内容创建一个skill XX"、"把这个链接制作成skill"、"帮我把复制的链接做成一键跳转"等意图时激活。 支持淘宝、拼多多、抖音、快手、知乎、小红书、美团、哔哩哔哩、高德、QQ音乐、支付宝、百度等主流 App 的分享链接。
Sync gallery images into long-term memory files and rebuild the user profile from photo-derived memories.
Consume the full memory/IMAGE-MEMORY.md file for all gallery-image questions and operations instead of using retrieval-first search.
| name | feishu-bitable |
| description | Feishu multi-dimensional table (Bitable) operations. Activate when user mentions tables, databases, or bitable links. |
Tool feishu_bitable for multi-dimensional table operations.
From URL https://xxx.feishu.cn/base/ABC123def → app_token = ABC123def
{ "action": "list_tables", "app_token": "ABC123def" }
Returns: all tables in the bitable app.
{ "action": "get_table", "app_token": "ABC123def", "table_id": "tblXXX" }
Returns: table name, fields, record count.
{
"action": "query_records",
"app_token": "ABC123def",
"table_id": "tblXXX",
"filter": "field_name=\"value\"",
"page_size": 20
}
Returns: records matching filter criteria.
{
"action": "create_record",
"app_token": "ABC123def",
"table_id": "tblXXX",
"fields": {
"field1": "value1",
"field2": "value2"
}
}
Creates a new record in the table.
{
"action": "update_record",
"app_token": "ABC123def",
"table_id": "tblXXX",
"record_id": "recXXX",
"fields": {
"field1": "new_value"
}
}
Updates an existing record.
{
"action": "delete_record",
"app_token": "ABC123def",
"table_id": "tblXXX",
"record_id": "recXXX"
}
Deletes a record from the table.
Tool Class: FeishuBitableTools.kt
Available Tools:
feishu_bitable_list_tables - List all tablesfeishu_bitable_query - Query recordsfeishu_bitable_create - Create recordfeishu_bitable_update - Update recordfeishu_bitable_delete - Delete recordExample Usage:
// Query records
val result = feishuBitableTools.queryRecords(
appToken = "ABC123def",
tableId = "tblXXX",
filter = "Status=\"Active\""
)
// Create record
val result = feishuBitableTools.createRecord(
appToken = "ABC123def",
tableId = "tblXXX",
fields = mapOf(
"Name" to "Task 1",
"Status" to "Active"
)
)
Bitable supports various field types:
Required: bitable:app, bitable:app:readonly