A comprehensive automation tool for programmatically accessing, downloading, and parsing documents within the Feishu (Lark) ecosystem.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install feishu-file-manager
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install feishu-file-manager using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The Feishu File Manager is a specialized skill designed to interface directly with the Feishu Open Platform. It enables users to interact with cloud-based files, including documents, spreadsheets, and presentations, via automated workflows. By integrating this capability through Openclaw Skills, developers can bridge the gap between their local environments and Feishu Drive, allowing for seamless document retrieval and content extraction.
This skill is particularly powerful for teams that rely on Feishu for collaboration but need to perform programmatic analysis on their data. It handles the complexities of authentication, file token extraction, and format-specific parsing, providing a clean text output or file stream for downstream processing.
First, ensure your credentials are configured in ~/.openclaw/openclaw.json:
{
"channels": {
"feishu": {
"appId": "cli_xxx",
"appSecret": "xxx"
}
}
}
To generate a temporary access token for testing, use the following command:
curl -s -X POST 'https://open.feishu.cn/open-apis/auth/v3/tenant_access_token/internal' \
-H 'Content-Type: application/json' \
-d '{"app_id": "your_app_id", "app_secret": "your_app_secret"}'
Ensure your Feishu Bot has been granted permissions for drive:file, docx:document:readonly, and sheets:spreadsheet:read in the Feishu Developer Console.
The skill organizes data based on the source document type and uses specific libraries for extraction:
| File Type | Extraction Method | Output Data |
|---|---|---|
| .docx | Python unzip & XML parsing | Raw text content |
| pdftotext utility | Text stream | |
| .pptx | python-pptx library | Slide-by-slide text |
| .xlsx | openpyxl library | Tabular data |
| Drive Metadata | Drive API v1 | File tokens, names, and sizes |
Loading
PostWall acts as a secure human-in-the-loop gateway for AI agents to interact with email safely and with oversight.

A read-only API skill providing factual data, bytecode, and historical context for Ethereum mainnet smart contracts.

Instantly deploy and chat with local or Hugging Face models directly from your workspace using vLLM.

A background automation skill that monitors Feishu messages to trigger tasks and provide real-time progress updates through isolated process execution.

Agent DNA is a structural identity framework that compresses AI agent personalities into portable, versioned fingerprints for seamless cross-platform migration.

AgentNet is an agent-to-agent discovery network that enables AI agents to find, verify, and collaborate with one another autonomously.








































