Loading...
Loading...
Export Feishu/Lark cloud documents to Markdown. Supports docx, sheets, bitable, and wiki. Use this skill when you need to read, analyze, or reference content from Feishu knowledge base.
npx skill4agent add leemysw/agent-kit feishu-docxpip install feishu-docxfeishu-docx config set --app-id YOUR_APP_ID --app-secret YOUR_APP_SECRET
# or use environment variablesfeishu-docx authfeishu-docx export "<FEISHU_URL>" -o ./outputfeishu-docx export "https://xxx.feishu.cn/wiki/ABC123" -o ./docsfeishu-docx export "https://xxx.feishu.cn/docx/XYZ789" -o ./docs -n meeting_notesfeishu-docx export "https://xxx.feishu.cn/sheets/DEF456" --table md# Output content to stdout instead of saving to file
feishu-docx export "https://xxx.feishu.cn/wiki/ABC123" --stdout
# or use short flag
feishu-docx export "https://xxx.feishu.cn/wiki/ABC123" -cfrom feishu_docx import FeishuExporter
exporter = FeishuExporter(app_id="xxx", app_secret="xxx")
content = exporter.export_content("https://xxx.feishu.cn/wiki/xxx")
print(content)| Command | Description |
|---|---|
| Export document to Markdown |
| OAuth authorization |
| Set credentials |
| Show current config |
| Clear token cache |
--table md--lark