Install
openclaw skills install feishu-md2blocksInsert rich Markdown content (including tables) into Feishu documents. Use when feishu_doc write/append fails with tables, or when inserting complex formatted content (tables, code blocks, nested lists) into an existing document at a specific position.
openclaw skills install feishu-md2blocksInsert Markdown content—including tables—into Feishu documents via the block convert + descendant API.
feishu_doc write replaces the entire document; use this to insert content at a positionfeishu_doc create_table_with_values has limitations for larger tables# Insert from file (appends to document end)
python3 <skill_dir>/scripts/md2blocks.py <doc_token> content.md
# Insert from stdin
echo "| A | B |\n|---|---|\n| 1 | 2 |" | python3 <skill_dir>/scripts/md2blocks.py <doc_token> -
# Insert after a specific block
python3 <skill_dir>/scripts/md2blocks.py <doc_token> content.md --after <block_id>
# Replace all content
python3 <skill_dir>/scripts/md2blocks.py <doc_token> content.md --replace
POST /docx/v1/documents/blocks/convert to convert Markdown → block structuresmerge_info from table blocks (read-only field that causes insertion errors)POST /docx/v1/documents/{doc}/blocks/{parent}/descendant to insert blocksThe descendant API handles nested structures (tables with cells containing text) that the simpler /children API cannot.
The --after <block_id> option inserts content right after the specified block. The script finds the block's index automatically.
Key detail: The /descendant API's index parameter must be in the request body, not as a URL query parameter. Passing ?index=N in the URL is silently ignored (content appends to end). The script handles this correctly.
Text, headings (h1-h9), bullet lists, ordered lists, code blocks, quotes, tables, todo items, dividers.
docx:document.block:convert permission on the Feishu appFor complete block-level API reference, see the feishu-block-ops skill which covers: