A specialized tool for converting Markdown content into Feishu block structures and inserting them into existing documents with precise positioning.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install feishu-md2blocks
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-md2blocks using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
Feishu Markdown to Blocks is a powerful utility designed to overcome the common limitations of standard document APIs. While basic operations often overwrite entire documents or fail when handling complex tables, this skill provides a granular approach to content management. As a key component of the Openclaw Skills library, it allows developers to convert Markdown source—including headers, nested lists, and intricate tables—directly into Feishu-native block formats.
By utilizing the Feishu descendant API instead of the simpler children API, this tool ensures that complex nested structures are preserved and rendered correctly. It is an essential asset for teams using Openclaw Skills to automate technical documentation, synchronize repository content with internal wikis, or generate dynamic reports within the Feishu ecosystem.
To get started with this skill, ensure your Feishu application has the docx:document.block:convert permission. Use the following commands to execute the conversion and insertion script:
# Basic usage to append a file to a document
python3 scripts/md2blocks.py <doc_token> content.md
# Inserting content after a specific block ID
python3 scripts/md2blocks.py <doc_token> content.md --after <block_id>
# Using stdin to pipe content directly
echo "# New Content" | python3 scripts/md2blocks.py <doc_token> -
The skill maps standard Markdown elements to Feishu document blocks as follows:
| Markdown Syntax | Feishu Block Type | Capability |
|---|---|---|
# to ####### |
Heading 1-9 | Automatic hierarchy conversion |
| ` | col | ` |
- or 1. |
Bullet/Ordered List | Supports nested indentation |
code |
Code Block | Preserves syntax highlighting |
- [ ] |
Todo Item | Creates interactive checklists |
This data schema allows Openclaw Skills to maintain high fidelity when moving content from technical environments into collaborative documents.
Loading
A high-performance synchronization tool for managing Feishu documents, spreadsheets, and complex block structures via Markdown.

Advanced low-level block management for Feishu cloud documents via direct REST API integration.

High-performance server-side querying and filtering for Feishu Bitable records with multiple output formats.

A specialized tool for finding and extracting Feishu Open API specifications, parameters, and error codes in real-time.

A specialized utility to programmatically retrieve and parse sub-messages within Feishu's merged and forwarded message format.

A specialized tool for fetching detailed Feishu message content and full conversation thread history via message IDs.








































