feishu-docx
Feishu knowledge base export, writing, and cloud-space management tool with Markdown, WeChat import, CLI, TUI, and OAuth 2.0
ไธญๆ | English
๐ Recent Updates (v0.2.6)
- Added Add-ons Block rendering support
- Sheet export now handles rich-text cells instead of emitting Python list/dict strings
export/export-wiki-spacenow support--sheet-value-modefor display values or formulas
๐ฏ Why feishu-docx?
Let AI Agents read, write, and manage your Feishu/Lark knowledge base.
- ๐ค Built for AI โ Works seamlessly with Claude/GPT Skills for document retrieval
- ๐ Full Coverage โ Documents, Spreadsheets, Bitables, Wiki nodes, and WeChat articles
- โ๏ธ Write Back Support โ Create docs, append content, and update specific blocks
- โ๏ธ Cloud-Space Management โ List files, delete files, manage permissions, clear files safely
- ๐ Authentication โ One-time auth, automatic token refresh
- ๐จ Dual Interface โ CLI + Beautiful TUI (Textual-based)
- ๐ฆ Zero Config โ
pip installand start exporting
โก Quick Start (30 seconds)
# Install
pip install feishu-docx
# Configure credentials (one-time)
feishu-docx config set --app-id YOUR_APP_ID --app-secret YOUR_APP_SECRET
# Export! (auto-obtains tenant_access_token, no OAuth needed)
feishu-docx export "https://my.feishu.cn/wiki/KUIJwaBuGiwaSIkkKJ6cfVY8nSg"
# Create a Feishu doc directly from a WeChat article
feishu-docx create --url "https://mp.weixin.qq.com/s/xxxxx"
# Manage app cloud-space documents
feishu-docx drive ls --type docx
# Optional: Use OAuth mode for user-level permissions
# feishu-docx config set --auth-mode oauth && feishu-docx auth
๐ค Skills Support
Enable Agent to access your Feishu knowledge base directly!
This project includes a Claude Skill at .skills/feishu-docx/SKILL.md.
Supports OpenCode, Claude Code, Codex, Cursor, and more.
Copy this Skill to your agent project, and Claude can:
- ๐ Read Feishu knowledge base as context
- ๐ Search and reference internal documents
- ๐ Create docs, append content, and update specific blocks
โจ Features
| Feature | Description |
|---|---|
| ๐ Document Export | Docx โ Markdown with formatting, images, tables |
| ๐ Spreadsheet Export | Sheet โ Markdown tables, with rich-text cells and display/formula modes |
| ๐ Bitable Export | Multidimensional tables โ Markdown |
| ๐ Wiki Export | Auto-resolve wiki nodes |
| ๐๏ธ Wiki Batch Export | Recursively export entire wiki space with hierarchy |
| โ๏ธ Document Writing | Create docs, append Markdown, update specific blocks |
| ๐ฐ WeChat Import/Export | Export WeChat articles or create Feishu docs from them |
| ๐ Browser-Based Export | Export public docs or docs accessible in the current browser session, with local assets |
| โ๏ธ Drive Management | List files, delete files, manage permissions, clear files |
| ๐๏ธ Database Schema | Export APaaS database structure to Markdown |
| ๐งท Local Asset Download | Images and attachments saved locally with relative paths |
| ๐ Auth | Auto tenant_access_token (recommended) or OAuth 2.0 |
| ๐จ Beautiful TUI | Terminal UI powered by Textual |
โ Supported Blocks
This tool currently supports exporting the following Feishu/Lark document components:
| Category | Features | Status | Notes |
|---|---|---|---|
| Basic Text | Headings, Paragraphs, Lists, Tasks (Todo), Code Blocks, Quotes | โ | Fully Supported |
| Formatting | Bold, Italic, Strikethrough, Underline, Links, @Mentions | โ | Fully Supported |
| Layout | Columns, Callouts, Dividers | โ | Fully Supported |
| Tables | Native Tables | โ | Export to Markdown/HTML |
| Media | Images, Drawing Boards | โ | Drawing boards exported as images |
| Embedded | Spreadsheets (Sheets), Bitable | โ | Sheets support rich-text cells and display/formula modes |
| Special | Synced Blocks, Add-ons Blocks | โ ๏ธ | Synced blocks support original blocks within the same doc only |
| Files | Attachments | โ | Local download when possible, temp link fallback |
๐ Usage
Use Cases
- Export Feishu docs, Sheets, Bitables, and Wiki nodes to Markdown
- Export a WeChat article to Markdown
- Create a Feishu doc directly from a WeChat article URL
- Create, append, or update Feishu document content
- Manage files and permissions in app cloud space or personal cloud space
CLI
export-browser requires Playwright:
pip install playwright
playwright install chromium
# Export single document to specific directory
feishu-docx export "https://xxx.feishu.cn/docx/xxx" -o ./docs
# Choose display values or formulas for Sheets (affects Sheet and embedded Sheet only)
feishu-docx export "https://xxx.feishu.cn/wiki/xxx" --table md --sheet-value-mode display
feishu-docx export "https://xxx.feishu.cn/wiki/xxx" --table md --sheet-value-mode formula
# Export a public or browser-readable doc in a real browser session
feishu-docx export-browser "https://xxx.larkoffice.com/wiki/xxx" -o ./browser_docs
# Export with existing Playwright storage state
feishu-docx export-browser "https://xxx.larkoffice.com/wiki/xxx" --storage-state ./storage_state.json
# Batch export entire wiki space (preserves hierarchy)
feishu-docx export-wiki-space <space_id_or_url> -o ./wiki_backup --max-depth 5
# Export APaaS database schema
feishu-docx export-workspace-schema <workspace_id> -o ./database_schema.md
# Export WeChat article to Markdown
feishu-docx export-wechat "https://mp.weixin.qq.com/s/xxxxxx"
# Fetch a WeChat article and create a Feishu doc
feishu-docx create --url "https://mp.weixin.qq.com/s/xxxxxx"
# List app cloud-space documents in tenant mode
feishu-docx drive ls --type docx
# Manage public permission of a document
feishu-docx drive perm-show "https://xxx.feishu.cn/docx/xxx"
feishu-docx drive perm-set "https://xxx.feishu.cn/docx/xxx" --share-entity anyone_can_view
# Clear files in cloud space with double confirmation
feishu-docx drive clear --type docx
# Use token directly
feishu-docx export "URL" -t your_access_token
# Launch TUI
feishu-docx tui
Python API
from feishu_docx import FeishuExporter
# Initialize (uses tenant_access_token by default)
exporter = FeishuExporter(app_id="xxx", app_secret="xxx")
# Export single document
path = exporter.export("https://xxx.feishu.cn/wiki/xxx", "./output")
# Get content without saving
content = exporter.export_content("https://xxx.feishu.cn/docx/xxx")
# Export a public or browser-readable doc via a real browser session
browser_path = exporter.export_with_browser(
"https://xxx.larkoffice.com/wiki/xxx",
"./browser_output",
)
# Get browser-based export content without saving
browser_content = exporter.export_content_with_browser(
"https://xxx.larkoffice.com/wiki/xxx",
)
# Batch export entire wiki space
result = exporter.export_wiki_space(
space_id="xxx",
output_dir="./wiki_backup",
max_depth=3,
)
print(f"Exported {result['exported']} docs to {result['space_dir']}")
๐ Feishu App Setup
- Create app at Feishu Open Platform
- Add redirect URL:
http://127.0.0.1:9527/ - Request permissions:
"docx:document:readonly" # ๆฅ็ไบๆๆกฃ
"wiki:wiki:readonly" # ๆฅ็็ฅ่ฏๅบ
"drive:drive:readonly" # ๆฅ็ไบ็ฉบ้ดๆไปถ๏ผๅพ็ไธ่ฝฝ๏ผ
"sheets:spreadsheet:readonly" # ๆฅ็็ตๅญ่กจๆ ผ
"bitable:app:readonly" # ๆฅ็ๅค็ปด่กจๆ ผ
"board:whiteboard:node:read" # ๆฅ็็ฝๆฟ
"contact:contact.base:readonly" # ่ทๅ็จๆทๅบๆฌไฟกๆฏ๏ผ@็จๆทๅ็งฐ๏ผ
"offline_access" # ็ฆป็บฟ่ฎฟ้ฎ๏ผ่ทๅ refresh_token๏ผ
- Save credentials:
feishu-docx config set --app-id cli_xxx --app-secret xxx
๐ Authentication Modes
| Tenant Mode (Default) | OAuth Mode | |
|---|---|---|
| Token Type | tenant_access_token |
user_access_token |
| Setup | Configure permissions in Open Platform | Request permissions during OAuth flow |
| User Interaction | โ Automatic, no user action needed | โ Requires browser authorization |
| Access Scope | Documents the app has permission to | Documents the user has permission to |
| Best For | Server automation, AI Agents | Accessing user's private documents |
Tenant Mode (Recommended for most cases):
# One-time setup
feishu-docx config set --app-id xxx --app-secret xxx
# Export (auto-obtains tenant_access_token)
feishu-docx export "https://xxx.feishu.cn/docx/xxx"
โ ๏ธ Tenant mode requires pre-configuring document permissions in Feishu Open Platform โ App Permissions.
Cloud space management (tenant/user):
# Tenant mode: manage files in app cloud space
feishu-docx drive ls --type docx
# OAuth mode: manage files in personal cloud space
feishu-docx drive ls --auth-mode oauth --type docx
๐ Feishu separates cloud space by token type:
tenant_access_tokenmaps to app cloud space, anduser_access_tokenmaps to personal cloud space. App cloud space resources cannot be managed from the UI and should be managed through Drive/File APIs.
OAuth Mode (For user-level access):
# One-time setup
feishu-docx config set --app-id xxx --app-secret xxx --auth-mode oauth
feishu-docx auth # Opens browser for authorization
# Export (uses cached user_access_token)
feishu-docx export "https://xxx.feishu.cn/docx/xxx"
๐ก OAuth mode requests permissions during the authorization flow, no pre-configuration needed.
๐ Commands
| Command | Description |
|---|---|
export <URL> |
Export single document to Markdown |
export-browser <URL> |
Export a public or browser-readable doc in a real browser session |
export-wiki-space <space_id> |
Batch export wiki space with hierarchy |
export-workspace-schema <id> |
Export APaaS database schema |
export-wechat <URL> |
Export WeChat article to Markdown |
create <title> |
Create new Feishu document (--url supported) |
drive ls |
List files in app/user cloud space |
drive rm <TOKEN> |
Delete a file from cloud space |
drive perm-show <TOKEN> |
Show public permission settings |
drive perm-set <TOKEN> |
Update public permission settings |
drive perm-members <TOKEN> |
List permission members |
drive perm-add <TOKEN> |
Add a permission member |
drive perm-update <TOKEN> |
Update a permission member |
drive perm-rm <TOKEN> |
Remove a permission member |
drive clear |
Clear files with double confirmation |
write <URL> |
Append Markdown content to document |
update <URL> |
Update specific block in document |
auth |
OAuth authorization |
tui |
Launch TUI interface |
config set |
Set credentials |
config show |
Show configuration |
config clear |
Clear cache |
๐ Documentation Strategy
README: overview, quick start, and command indexdocs/*.md: topic-focused guides for more complex workflows
Currently available:
๐บ๏ธ Roadmap
- [x] Document/Sheet/Wiki export
- [x] OAuth 2.0 + Token refresh
- [x] TUI interface
- [x] Claude Skills support
- [x] Batch export entire wiki space
- [x] Write to Feishu (create/update docs)
- [x] Browser-based export with local assets
๐ Changelog
See CHANGELOG.md for version history.
๐ More Docs
๐ License
MIT License - See LICENSE
โญ Star this repo if you find it helpful!