feishu-doc
Feishu document read/write operations. Activate when user mentions Feishu docs, cloud docs, or docx links.
Install / Use
npx skills add OPPO-Mente-Lab/X-OmniClawInstalls into whichever agent you are using.
SKILL.md
Installable skill definition
Quality Score
Category
Content & MediaSupported Platforms
Tags
Skill content
View source on GitHubname: feishu-doc description: | Feishu document read/write operations. Activate when user mentions Feishu docs, cloud docs, or docx links.
Feishu Document Tool
Single tool feishu_doc with action parameter for all document operations.
Token Extraction
From URL https://xxx.feishu.cn/docx/ABC123def → doc_token = ABC123def
Actions
Read Document
{ "action": "read", "doc_token": "ABC123def" }
Returns: title, plain text content, block statistics.
Write Document (Replace All)
{ "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.
Note: On Android, markdown is converted to Feishu block format using document API.
Append Content
{ "action": "append", "doc_token": "ABC123def", "content": "Additional content" }
Appends markdown to end of document.
Create Document
{ "action": "create", "title": "New Document", "folder_token": "fldcnXXX" }
Creates a new document in specified folder.
X-OmniClaw Implementation
Tool Class: FeishuDocTools.kt
Available Tools:
feishu_doc_read- Read document contentfeishu_doc_write- Write/replace document contentfeishu_doc_append- Append content to documentfeishu_doc_create- Create new document
Example Usage:
// Read document
val result = feishuDocTools.readDoc(docToken = "ABC123def")
// Write document
val result = feishuDocTools.writeDoc(
docToken = "ABC123def",
content = "# Title\n\nContent..."
)
Permissions
Required: docx:document, docx:document:readonly
Related Skills
siyuan
46.4kAn open-source, privacy-first, self-hosted knowledge workspace where humans and AI agents work together 开源、隐私优先、自托管的知识工作空间,让人与智能体在此协作
humanizer
50.9kAgent skill that removes signs of AI-generated writing from text
oh-story-claudecode
7.0kClaude Code / Codex / OpenCode agent skills for writing Chinese web novels (网文): 扫榜、拆文、写作、去AI味、封面全流程,长篇短篇都支持 | 13 skills for novel writing and long-form fiction with file-based continuity tracking. MIT.
iPolloWork
6.5kEnterprise-grade, local-first Agent Workbench for people and agent teams. A unified multi-engine workspace for Codex Harness, DeepSeek Harness, and OpenCode, with unified plugins and Skills, multi-agent projects and tasks, and editable code, documents, presentations, design, and video.
Security Score
Audited on May 22, 2026
