Token导航 LogoToken导航TokenDH.com
开发需要联网unknown未标认证来源可访问许可证需确认审计未展示

feishu-bitable-sync飞书比特同步

Agent Skill

feishu-bitable-sync 用于补充开发相关能力,适合在 Local Agent 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

261

周安装

11

下载量

92
Local Agent

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:feishu-bitable-sync(飞书比特同步)
来源仓库:https://skills.volces.com
仓库路径:feishu-bitable-sync
安装命令:
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

feishu-bitable-sync 实现飞书表格与其他系统的数据同步。

  • 支持定时增量更新与全量覆盖两种模式。feishu-bitable-sync 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 适用于 CRM、ERP 等外部系统对接场景。
  • 需配置目标系统的 API 接入凭证。
  • 首次同步建议采用小批量数据进行验证测试。

SKILL.md

Feishu Bitable Data Sync

⚠️ Pre-requisites

  • Get app_token: From bitable URL or list API
  • Get table_id: From bitable table list
  • Field types: Must match exactly (text=1, number=2, date=5, person=11, etc.)

📋 Quick Reference

IntentToolactionRequired Params
List bitablesfeishu_bitable_applist-
List tablesfeishu_bitable_app_tablelistapp_token
Query recordsfeishu_bitable_app_table_recordlistapp_token, table_id
Create recordsfeishu_bitable_app_table_recordbatch_createapp_token, table_id, records
Update recordsfeishu_bitable_app_table_recordbatch_updateapp_token, table_id, records
Delete recordsfeishu_bitable_app_table_recordbatch_deleteapp_token, table_id, record_ids

🛠️ Sync Patterns

1. One-way Sync (Source → Destination)

// Step 1: Read source data
{
  "action": "list",
  "app_token": "source_token",
  "table_id": "source_table",
  "page_size": 500
}

// Step 2: Transform and write to destination
{
  "action": "batch_create",
  "app_token": "dest_token",
  "table_id": "dest_table",
  "records": [
    {"fields": {"字段A": "值1", "字段B": "值2"}}
  ]
}

2. Two-way Sync with Conflict Resolution

Compare records by unique identifier and handle conflicts:

// Pseudo-code for sync:
// 1. Fetch both bitables
// 2. Compare by unique field (如: 任务ID)
// 3. If source is newer: update dest
// 4. If dest is newer: update source (or skip)
// 5. Report sync results

{
  "action": "list",
  "app_token": "token",
  "table_id": "table",
  "filter": {
    "conjunction": "and",
    "conditions": [{"field_name": "同步状态", "operator": "is", "value": ["未同步"]}]
  }
}

3. Import from CSV

Convert CSV to bitable records:

任务名称,负责人,截止日期,优先级
任务A,张三,2026-04-01,高
任务B,李四,2026-04-02,中
{
  "action": "batch_create",
  "app_token": "Mxxx",
  "table_id": "Txxx",
  "records": [
    {"fields": {"任务名称": "任务A", "负责人": [{"id": "ou_xxx"}], "截止日期": 1743446400000, "优先级": "高"}},
    {"fields": {"任务名称": "任务B", "负责人": [{"id": "ou_yyy"}], "截止日期": 1743532800000, "优先级": "中"}}
  ]
}

4. Scheduled Sync Marker

Use a special field to track sync status:

唯一标识数据同步时间同步状态
TASK_001{...}1743446400000已同步
{
  "action": "batch_update",
  "app_token": "Mxxx",
  "table_id": "Txxx",
  "records": [
    {"record_id": "rec_xxx", "fields": {"同步状态": "已同步", "同步时间": 1743446400000}}
  ]
}

💰 Pricing

VersionPriceFeatures
Free¥0Manual sync, up to 100 records
Pro¥15/monthAuto sync, 500 records, conflict resolution
Team¥45/monthScheduled sync, API, unlimited

📝 Example

User says: "把A表格的任务同步到B表格,只同步未完成的任务"

Execute:

  1. List records from source with filter for 未完成
  2. Transform records to match destination schema
  3. Batch create or update destination records
  4. Mark source records as 已同步

🔧 Field Type Reference

Type IDField Type
1Text
2Number
3Single Select
4Multi Select
5Date
7Checkbox
11Person
13Phone
15URL
17Attachment
1001Created Time
1002Modified Time

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Local Agent

96.99%
按下载量换算89

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills