Install
openclaw skills install feishu-folder-summaryExtract summaries from all documents in a Feishu folder. Use when the user needs to recursively scan a Feishu wiki space or drive folder, read all documents and sub-documents, and generate a comprehensive summary report in Markdown format. Triggers on requests like "extract summaries from Feishu folder", "generate document summary report", "recursively scan Feishu documents", or when given a feishu.cn/wiki/ or feishu.cn/drive/ URL.
openclaw skills install feishu-folder-summaryThis skill extracts summaries from all documents in a Feishu folder (wiki or drive), recursively scanning sub-folders and generating a comprehensive Markdown report.
The skill performs the following operations:
https://{domain}.feishu.cn/wiki/{node_token}https://{domain}.feishu.cn/drive/folder/{folder_token}Parse the provided Feishu URL to identify:
Use feishu_wiki API to traverse the folder structure:
feishu_wiki action="get" token="{node_token}" # Get folder info
feishu_wiki action="nodes" space_id="{space_id}" # List child nodes
For folders with has_child: true, recursively process child nodes.
For each document node, read its content:
feishu_doc action="read" doc_token="{obj_token}"
Extract from each document:
Generate a Markdown report with:
The generated report includes:
# {Folder Name} Document Summary Report
**Source:** {URL}
**Generated:** {Timestamp}
**Total Documents:** {Count}
---
## Directory Structure
{Tree visualization}
---
## Level 1 Summaries
### 1. {Document Name}
- **Type:** {docx/folder}
- **Status:** {Complete/In Progress/Empty}
- **Summary:** {Core content description}
### 2. {Folder Name}/
- **Type:** folder
- **Documents:** {Count}
- **Summary:** {Folder description}
#### 2.1 {Child Document}
- **Type:** docx
- **Summary:** {Content summary}
---
## Statistics
| Category | Count | Status |
|----------|-------|--------|
| Total | X | - |
| Complete | X | ✅ |
| In Progress | X | 🚧 |
| Empty | X | ⚠️ |
---
*Report generated by feishu-folder-summary skill*
User Request:
"Extract summaries from https://caz6yhvgk5z.feishu.cn/wiki/BzslwD3Nei1Dggkvin5cV2hDnob"
Skill Execution:
Output:
See references/feishu_api.md for detailed API documentation.