Fetch content from Feishu (Lark) Wiki, Docs, Sheets, and Bitable. Automatically resolves Wiki URLs to real entities and converts content to Markdown.
Fetch content from Feishu (Lark) Wiki, Docs, Sheets, and Bitable. Write and update documents.
feishu-common first.../feishu-common/index.js for token and API auth.To generate long documents (exceeding LLM output limits of ~2000-4000 tokens):
doc_token.feishu_doc_append.feishu_doc_write call if it is very long; use the append loop pattern.# Read
node index.js --action read --token <doc_token>
# Create
node index.js --action create --title "My Doc"
# Write (Overwrite)
node index.js --action write --token <doc_token> --content "# Title\nHello world"
# Append
node index.js --action append --token <doc_token> --content "## Section 2\nMore text"
Create a config.json file in the root of the skill or set environment variables:
{
"app_id": "YOUR_APP_ID",
"app_secret": "YOUR_APP_SECRET"
}
Environment variables:
FEISHU_APP_IDFEISHU_APP_SECRET