SkillAgentSearch skills...

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-OmniClaw

Installs into whichever agent you are using.

About this skill
📄

SKILL.md

Installable skill definition

Quality Score

62/100

Supported Platforms

Universal

Tags


name: 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/ABC123defdoc_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 (![](url) 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 content
  • feishu_doc_write - Write/replace document content
  • feishu_doc_append - Append content to document
  • feishu_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

View on GitHub
GitHub Stars0
CategoryContent
Updated4mo ago
Forks0

Security Score

78/100

Audited on May 22, 2026

1 medium1 low1 info