一键导入
feishu-wiki
Feishu knowledge base operations. Actions: spaces, nodes, get, create, move, rename
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Feishu knowledge base operations. Actions: spaces, nodes, get, create, move, rename
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Shared Feishu (Lark) authentication and API request helper providing tenant token acquisition with caching, automatic retry with timeout handling, and authenticated request wrappers with token refresh.
Send multiple Feishu (Lark) messages in a single tool call with configurable delay, supporting plain text arrays and mixed content types (text and rich post).
Manage Feishu (Lark) calendars including listing, searching, syncing events, creating calendar entries from task requests, and setting up shared project calendars.
Send rich interactive cards to Feishu (Lark) users or groups with Markdown support, colored headers, action buttons, embedded images, and AI persona styling.
Unified CLI for Feishu (Lark) messaging operations including fetching messages by ID, sending audio voice bubbles, creating group chats, listing pinned messages, and adding emoji reactions.
Feishu native emoji mapping -- emoji_type codes, Chinese names, and Unicode conversion table for card markdown.
| name | feishu-wiki |
| description | Feishu knowledge base operations. Actions: spaces, nodes, get, create, move, rename |
Manage Feishu (Lark) Knowledge Base structure. Create spaces, list nodes, move pages, and manage hierarchy.
feishu-common for authentication.FEISHU_APP_ID and FEISHU_APP_SECRET.spaces: List knowledge spaces.nodes: List nodes in a space (with optional parent filter).get: Get details of a specific node.create: Create a new node (page) in a space.move: Move a node to a new parent or space.rename: Update node title.# List all knowledge spaces
node skills/feishu-wiki/index.js --action spaces
# List nodes in a specific space
node skills/feishu-wiki/index.js --action nodes --space_id <space_id>
# Get details of a node (resolve from token)
node skills/feishu-wiki/index.js --action get --token <wiki_token>
# Create a new node under a parent
node skills/feishu-wiki/index.js --action create --space_id <space_id> --parent_node_token <parent_token> --obj_type docx --title "New Page"
# Move a node
node skills/feishu-wiki/index.js --action move --token <node_token> --target_parent_token <new_parent_token> --target_space_id <space_id>
# Rename a node (updates title)
node skills/feishu-wiki/index.js --action rename --token <node_token> --title "New Title"
feishu-doc to manipulate the content of the pages. Use feishu-wiki to manipulate the structure.token refers to the Wiki Token (from URL /wiki/XXX).obj_type defaults to docx. Can be sheet, bitable, etc.