modelscope.cn

feishu-fetch-doc

获取飞书云文档?

Installation

$ npx skills add https://modelscope.cn

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from modelscope.cn · top by installs.

npx skills add https://modelscope.cn

Browse all from modelscope.cn

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,978 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

feishumcpfetch_doc

获取飞书云文档的 Markdown 内容(Lark-flavored 格式)。

重要:图片、文件、画板的处理

文档中的图片、文件、画板需要通过 feishudocmedia(action: download)工具单独获取!

识别格式

返回的 Markdown 中,媒体文件以 HTML 标签形式出现:

  • 图片

``html <image token="Z1FjxxxxxxxxxxxxxxxxxxxtnAc" width="1833" height="2491" align="center"/> ``

  • 文件

``html <view type="1"> <file token="Z1FjxxxxxxxxxxxxxxxxxxxtnAc" name="skills.zip"/> </view> ``

  • 画板

``html <whiteboard token="Z1FjxxxxxxxxxxxxxxxxxxxtnAc"/> ``

获取步骤

  1. 从 HTML 标签中提取 token 属性值
  2. 调用 feishudocmedia 下载:

``json { "action": "download", "resourcetoken": "提取的token", "resourcetype": "media", "output_path": "/path/to/save/file" } ``

参数

  • doc_id(必填):支持直接传文档 URL 或 token

- 直接传 URL:https://xxx.feishu.cn/docx/Z1FjxxxxxxxxxxxxxxxxxxxtnAc(系统自动提取 token) - 直接传 token:Z1FjxxxxxxxxxxxxxxxxxxxtnAc - 知识库 URL/token 也支持:https://xxx.feishu.cn/wiki/Z1FjxxxxxxxxxxxxxxxxxxxtnAcZ1FjxxxxxxxxxxxxxxxxxxxtnAc

Wiki URL 处理策略

知识库链接(/wiki/TOKEN)背后可能是云文档、电子表格、多维表格等不同类型的文档。当不确定类型时, 不能直接假设是云文档,必须先查询实际类型。

处理流程

  1. 先调用 feishuwikispace_node(action: get)解析 wiki token

``json { "action": "get", "token": "wikitokenhere" } ``

  1. 从返回的 node 中获取 objtype(实际文档类型)和 objtoken(实际文档 token)
  2. 根据 obj_type 调用对应工具
obj_type 工具 传参
docx feishumcpfetch_doc docid = objtoken
sheet feishu_sheet spreadsheettoken = objtoken
bitable feishubitable* 系列 apptoken = objtoken
其他 告知用户暂不支持该类型

示例

用户:帮我看下这个文档 https://xxx.feishu.cn/wiki/ABC123

  1. 调用 feishuwikispace_node(action: get, token: ABC123)
  2. 返回 objtype: "docx", objtoken: "doxcnXYZ789"
  3. 调用 feishumcpfetchdoc(docid: doxcnXYZ789)

工具组合

需求 工具
获取文档文本 feishumcpfetch_doc
下载图片/文件/画板 feishudocmedia(action: download)
解析 wiki token 类型 feishuwikispace_node(action: get)
读写电子表格 feishu_sheet
操作多维表格 feishubitable* 系列