用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vramrick/openclaw-skills --skill feishu-doc-reader命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
全能高级前端研发工程师技能。擅长AI时代前沿技术栈(React最新 + shadcn/ui + Tailwind CSS v4 + TypeScript + Next.js),精通动效库与交互特效开发。采用Glue Code风格快速实现代码,强调高质量产品体验与高度友好的UI视觉规范。在组件调用、交互特效、全局Theme上保持高度规范:绝不重复造轮子,相同逻辑出现两次即封装为组件。具备安全意识,防范各类注入攻击。开发页面具有高度自适应能力,响应式设计贯穿始终。当用户无特殊技术栈要求时,默认采用主流前沿技术栈。
Read, write, append, and list local files in the session's working directory. Use when you need to persist output to disk, read input files, or manipulate file system safely. Supports text files, JSON, CSV, Markdown.
超级简历 WonderCV 出品,3000 万用户信赖。简历分析、段落改写、JD 岗位匹配、自动匹配职位、PDF 导出、AI 求职导师(面试准备/薪资谈判/职业规划/多版本简历策略)。 触发条件:用户提供简历、要求简历点评/打分/反馈、希望改写某个简历部分、 希望将简历与岗位 JD 或校招岗位匹配、咨询求职建议或面试准备,或提到 CV/简历/求职/校招。 不触发条件:用户讨论普通写作(非简历)、询问其他文档, 或讨论与求职和职业发展无关的话题。
基于 SOC 职业分类
正在显示 SKILL.md
| name | feishu-doc-reader |
| description | Read and extract content from all Feishu (Lark) document types using the official Feishu Open API |
| metadata | {"moltbot":{"emoji":"📄","requires":{"bins":"[Truncated]"}}} |
This skill enables reading and extracting content from all Feishu (Lark) document types using the official Feishu Open API.
./reference/feishu_config.json with your Feishu app credentials:{
"app_id": "your_feishu_app_id_here",
"app_secret": "your_feishu_app_secret_here"
}
chmod +x scripts/read_doc.sh
chmod +x scripts/read_feishu.sh
chmod +x scripts/get_blocks.sh
Security Note: The configuration file should be kept secure and not committed to version control. Consider using proper file permissions (chmod 600 ./reference/feishu_config.json).
使用统一文档读取器可以自动识别并读取所有支持的文档类型:
# 自动识别文档类型并读取
./scripts/read_feishu.sh "docx_xxxxxxxxxxxxxx"
./scripts/read_feishu.sh "sheet_xxxxxxxxxxxxx"
./scripts/read_feishu.sh "basexxxxxxxxxxxxxx"
./scripts/read_feishu.sh "wikcnxxxxxxxxxxxxx"
# 从URL直接读取
./scripts/read_feishu.sh "https://xxx.feishu.cn/docx/xxxxx"
# 指定文档类型
./scripts/read_feishu.sh "token" --type bitable
# 格式化JSON输出
./scripts/read_feishu.sh "token" --pretty
# 只输出文本内容
./scripts/read_feishu.sh "docx_token" --output text
读取飞书知识库节点和内容:
# 读取单个Wiki节点
./scripts/read_feishu.sh "wikcnxxxxxxxxxxxxxx" --type wiki
# 读取整个知识空间
./scripts/read_feishu.sh --wiki-space "SPACE_ID"
# 递归读取所有子节点内容
./scripts/read_feishu.sh --wiki-space "SPACE_ID" --recursive
读取飞书多维表格数据:
# 读取多维表格(包含所有数据表和记录)
./scripts/read_feishu.sh "basexxxxxxxxxxxxxx" --type bitable
# 读取新版文档
./scripts/read_doc.sh "docx_xxxxxxxxxxxxxx"
# 读取电子表格
./scripts/read_doc.sh "sheet_xxxxxxxxxxxxx" sheet
# 读取多维表格
./scripts/read_doc.sh "basexxxxxxxxxxxxxx" bitable
# 读取知识库节点
./scripts/read_doc.sh "wikcnxxxxxxxxxxxxx" wiki
For complete document structure with all blocks:
# Get full document blocks structure
./scripts/get_blocks.sh "docx_AbCdEfGhIjKlMnOpQrStUv"
Using Python directly:
python scripts/feishu_reader.py "docx_token" --pretty
python scripts/feishu_reader.py "sheet_token" --type sheet
python scripts/feishu_reader.py --wiki-space "SPACE_ID" --recursive
| 类型 | Token前缀 | 说明 | 支持程度 |
|---|---|---|---|
| docx | docx_ | 新版飞书文档 | ✅ 完整支持 |
| doc | doc_ | 旧版飞书文档 | ✅ 基本支持 |
| sheet | sheet_, shtcn | 电子表格 | ✅ 完整支持 |
| bitable | base, bascn | 多维表格 | ✅ 完整支持 |
| wiki | wikcn | 知识库节点 | ✅ 完整支持 |
| slides | - | 幻灯片 | ⚠️ 仅元数据 |
# Python script options
python scripts/read_feishu_doc.py --help
# Shell script usage
./scripts/read_doc.sh <doc_token> [doc|sheet|slide]
# Get full document blocks
./scripts/get_blocks.sh <doc_token>
# Get specific block
./scripts/get_blocks.sh <doc_token> <block_id>
# Include children blocks
./scripts/get_blocks.sh <doc_token> "" true
# Python options
python scripts/get_feishu_doc_blocks.py --help
Your Feishu app needs the following permissions based on document types:
docx:document:readonly - 读取新版文档内容doc:document:readonly - 读取旧版文档内容sheets:spreadsheet:readonly - 读取电子表格内容bitable:app:readonly - 读取多维表格元信息bitable:record:read - 读取多维表格记录wiki:wiki:readonly - 读取知识库节点信息drive:drive:readonly - 读取云空间文件信息Common errors and solutions:
wiki:wiki:readonly 权限bitable:record:read 权限# 新版文档 (docx)
./scripts/read_feishu.sh "docx_AbCdEfGhIjKlMnOp" --pretty
# 电子表格 (sheet)
./scripts/read_feishu.sh "sheet_XyZ123AbCdEfGh" --type sheet
# 多维表格 (bitable)
./scripts/read_feishu.sh "baseAbCdEfGhIjKlMn" --type bitable --pretty
# 知识库节点 (wiki)
./scripts/read_feishu.sh "wikcnAbCdEfGhIjKl" --type wiki
# 读取单个节点及其内容
./scripts/read_feishu.sh "wikcnAbCdEfGhIjKl" --type wiki --pretty
# 读取整个知识空间
./scripts/read_feishu.sh --wiki-space "7xxxxxxxxxx" --pretty
# 递归读取知识空间所有内容
./scripts/read_feishu.sh --wiki-space "7xxxxxxxxxx" --recursive
# 直接从飞书URL读取(自动识别类型)
./scripts/read_feishu.sh "https://xxx.feishu.cn/docx/xxxxx"
./scripts/read_feishu.sh "https://xxx.feishu.cn/wiki/xxxxx"
./scripts/read_feishu.sh "https://xxx.feishu.cn/base/xxxxx"
# JSON格式(默认)
./scripts/read_feishu.sh "docx_token"
# 格式化JSON
./scripts/read_feishu.sh "docx_token" --pretty
# 仅输出纯文本
./scripts/read_feishu.sh "docx_token" --output text
# 统一读取器
python scripts/feishu_reader.py "docx_token" --pretty
python scripts/feishu_reader.py "base_token" --type bitable
python scripts/feishu_reader.py --wiki-space "SPACE_ID" --recursive
# 文档blocks专用
python scripts/get_feishu_doc_blocks.py "docx_token"
chmod 600)test_auth.py script to verify credentialsdocx_, doc_, or sheet_)open.feishu.cn--include-children flag for complete block tree