feishu-doc
Feishu document read/write operations. Activate when user mentions Feishu docs, cloud docs, or docx links.
npx skills add SafeAI-Lab-X/ClawKeeper --skill feishu-doc --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Feishu Document Tool Single tool `feishu_doc` with action parameter for all document operations, including table creation for Docx. ## Token Extraction From URL `https://xxx.feishu.cn/docx/ABC123def` → `doc_token` = `ABC123def` ## Actions ### Read Document ```json { "action": "read", "doc_token": "ABC123def" } ``` Returns: title, plain text content, block statistics. Check `hint` field - if present, structured content (tables, images) exists that requires `list_blocks`. ### Write Document (Replace All) ```json { "action": "write", "doc_token": "ABC123def", "content": "# Title\n\nMarkdown content..." } ``` Replaces entire document with markdown content. Supports: headings, lists, code blocks, quotes, links, images (`` auto-uploaded), bold/italic/strikethrough. **Limitation:** Markdown tables are NOT supported. ### Append Content ```json { "action": "append", "doc_token": "ABC123def", "content": "Additional content" } ``` Appends markdown to end of document. ### Create Document ```json { "action": "create", "title": "New Document", "owner_open_id": "ou_xxx" } ``` With folder: ```json { "action": "create", "title": "New Document", "folder_token": "fldcnXXX", "owner_open_id":
- Token Extraction
- Actions
- Read Document
- Write Document (Replace All)
- Append Content
- Create Document
- List Blocks
- Get Single Block
- Update Block Text
- Delete Block
- Create Table (Docx Table Block)
- Write Table Cells
- Create Table With Values (One-step)
- Upload Image to Docx (from URL or local file)
What does the feishu-doc skill do?
Feishu document read/write operations. Activate when user mentions Feishu docs, cloud docs, or docx links.
How do I install it?
Run `npx skills add SafeAI-Lab-X/ClawKeeper --skill feishu-doc --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From SafeAI-Lab-X/ClawKeeper, a repository with 1,034 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
