# Send 飞书文档文件夹摘要生成器 to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "feishu-folder-summary",
    "name": "飞书文档文件夹摘要生成器",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/henryjing96/feishu-folder-summary",
    "canonicalUrl": "https://clawhub.ai/henryjing96/feishu-folder-summary",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/feishu-folder-summary",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=feishu-folder-summary",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/summary_generator.py",
      "references/feishu_api.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "feishu-folder-summary",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T23:42:59.173Z",
      "expiresAt": "2026-05-08T23:42:59.173Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=feishu-folder-summary",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=feishu-folder-summary",
        "contentDisposition": "attachment; filename=\"feishu-folder-summary-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "feishu-folder-summary"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/feishu-folder-summary"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/feishu-folder-summary",
    "downloadUrl": "https://openagent3.xyz/downloads/feishu-folder-summary",
    "agentUrl": "https://openagent3.xyz/skills/feishu-folder-summary/agent",
    "manifestUrl": "https://openagent3.xyz/skills/feishu-folder-summary/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/feishu-folder-summary/agent.md"
  }
}
```
## Documentation

### Feishu Folder Summary

This skill extracts summaries from all documents in a Feishu folder (wiki or drive), recursively scanning sub-folders and generating a comprehensive Markdown report.

### Overview

The skill performs the following operations:

Parses the Feishu folder URL to extract space_id and node_token
Recursively traverses the folder structure using feishu_wiki API
Reads each document's content using feishu_doc API
Generates structured summaries for each document
Compiles a comprehensive Markdown report with:

Complete directory tree
Document summaries organized by folder
Statistics and status overview
Links to original documents

### Supported URL Formats

Wiki folders: https://{domain}.feishu.cn/wiki/{node_token}
Drive folders: https://{domain}.feishu.cn/drive/folder/{folder_token}

### Step 1: Extract Folder Information

Parse the provided Feishu URL to identify:

Document type (wiki or drive)
Space ID (for wiki)
Node token or folder token

### Step 2: Recursive Traversal

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.

### Step 3: Document Reading

For each document node, read its content:

feishu_doc action="read" doc_token="{obj_token}"

### Step 4: Generate Summary

Extract from each document:

Title: Document title
Type: Document or Folder
Status: Complete, In Progress, or Empty
Core Content: Key points, main topics, important information
Child Documents: If folder, list contained documents

### Step 5: Compile Report

Generate a Markdown report with:

Header (source URL, generation time, document count)
Directory tree visualization
Hierarchical summaries (by folder level)
Statistics table
Related links

### Output Format

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*

### Example Usage

User Request:

"Extract summaries from https://caz6yhvgk5z.feishu.cn/wiki/BzslwD3Nei1Dggkvin5cV2hDnob"

Skill Execution:

Parse URL → Wiki folder, node_token=BzslwD3Nei1Dggkvin5cV2hDnob
Get folder info → space_id=7593876306731732193, title="AI云平台"
Recursively traverse → Found 14 level-1 nodes, 30+ child documents
Read each document → Extract content and generate summaries
Compile report → Generate comprehensive Markdown summary

Output:

Complete directory tree
Hierarchical summaries for all 44 documents
Status tracking (✅ Complete, 🚧 In Progress, ⚠️ Empty)
Statistics overview

### Key Considerations

Recursive Depth: Process all levels of nested folders
Document Types: Handle docx (documents) and folder (containers)
Error Handling: Continue processing if individual document read fails
Content Length: Generate concise but informative summaries
Status Detection: Identify empty or placeholder documents
Token Efficiency: Summarize long documents appropriately

### API Reference

See references/feishu_api.md for detailed API documentation.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: henryjing96
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T23:42:59.173Z
- Expires at: 2026-05-08T23:42:59.173Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/feishu-folder-summary)
- [Send to Agent page](https://openagent3.xyz/skills/feishu-folder-summary/agent)
- [JSON manifest](https://openagent3.xyz/skills/feishu-folder-summary/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/feishu-folder-summary/agent.md)
- [Download page](https://openagent3.xyz/downloads/feishu-folder-summary)