用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/a4001234567/yet-another-lark-mcp --skill feishu-doc命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | feishu-doc |
| description | Create, read, edit, search, and delete Lark documents and files. |
Requires authentication — run feishu_auth_init if not yet authenticated.
| Tool | Required | Optional | Returns |
|---|---|---|---|
feishu_doc_create | — | title, folder_token | document_id |
feishu_doc_fetch | document_id | — | content (plain text) + blocks list with block_id, type, text |
feishu_doc_append | document_id | text, type, bold, italic, inline_code, done, image_path, callout_emoji, callout_bg | ok |
feishu_doc_patch | document_id, block_id, text | bold, italic, inline_code, done | ok |
feishu_doc_delete | document_id, block_id | — | ok |
feishu_doc_delete_file | file_token | type (docx|file|sheet|bitable, default docx) | { deleted: true } |
feishu_doc_search | query | page_size | list of { token, title, url } |
typevalues for append:paragraph·heading1–heading6·bullet·ordered·code·quote·todo·callout·equation·image
callout_bgvalues: 1=LightRed · 2=LightOrange · 3=LightYellow · 4=LightGreen · 5=LightBlue · 6=LightPurple · 7=LightGray
Edit/delete workflow:
feishu_doc_fetch→ getblock_idfromblockslist →feishu_doc_patchorfeishu_doc_delete
After creating, send the URL as a plain text message — Feishu auto-expands it into a doc preview card:
https://feishu.cn/docx/{document_id}
The tenant prefix (tsinghuasigs.feishu.cn etc.) is not required — the short URL works.
Get document_id from the URL (last path segment) or feishu_doc_search, then call feishu_doc_fetch.
Use feishu_doc_delete_file with the doc's document_id as file_token (and type: "docx" for docs). This permanently deletes the file from Drive — confirm with the user before proceeding.