Agent skill · Documentation

feishu-doc

Feishu document read/write operations. Activate when user mentions Feishu docs, cloud docs, or docx links.

SafeAI-Lab-Xgithub.com/SafeAI-Lab-XGitHub ↗
claude-code
Install
npx skills add SafeAI-Lab-X/ClawKeeper --skill feishu-doc --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: legacy/clawkeeper-watcher/extensions/feishu/skills/feishu-doc/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,034
Language: TypeScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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 (`![](url)` 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":

What's inside
Steps it walks through
  1. Token Extraction
  2. Actions
  3. Read Document
  4. Write Document (Replace All)
  5. Append Content
  6. Create Document
  7. List Blocks
  8. Get Single Block
  9. Update Block Text
  10. Delete Block
  11. Create Table (Docx Table Block)
  12. Write Table Cells
  13. Create Table With Values (One-step)
  14. Upload Image to Docx (from URL or local file)
Ships with 1 file
  • references/block-types.md
More from ClawKeeper
All skills →
About this skill
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.

Keep going