feishu-wiki

Navigate and manage Feishu wiki knowledge base nodes via a single tool.

Updated Mar 30, 2026
One-click install
npx skills add https://github.com/srgaba/open-claw --skill feishu-wiki-srgaba
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: feishu-wiki
Source: https://github.com/srgaba/open-claw/tree/main/project/extensions/feishu/skills/feishu-wiki
Command: npx skills add https://github.com/srgaba/open-claw --skill feishu-wiki-srgaba

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Working with Feishu knowledge bases requires juggling space IDs, node tokens, and document tokens across multiple API calls. This Skill consolidates wiki navigation and node management into one tool, so you can list spaces, browse nodes, and create or reorganize pages without memorizing the Feishu API. ## Core Features & Use Cases - Space and Node Navigation: List all accessible wiki spaces and browse node trees with optional parent filtering. - Node Management: Create pages of various types (docx, sheet, bitable, mindnote, slides), move nodes between spaces or parents, and rename nodes. - Wiki-Doc Workflow: Resolve a wiki token to its underlying document token, then read or edit the content with the feishu_doc tool. - Use Case: A user pastes a Feishu wiki link and asks to update the page. The Skill extracts the token from the URL, fetches the node to get its obj_token, then hands off to feishu_doc to read and rewrite the content. ## Quick Start List all my Feishu wiki spaces and show the top-level nodes in the first one.

Frequently Asked Questions about feishu-wiki

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I get the token from a Feishu wiki link?

Extract the token from the URL path after /wiki/. For example, in https://xxx.feishu.cn/wiki/ABC123def, the token is ABC123def. Pass it to the get action to retrieve node details.

How do I edit a Feishu wiki page?

First call feishu_wiki with the get action to resolve the wiki token into an obj_token. Then use the feishu_doc tool with that obj_token to read or write the document content.

What page types can I create in a Feishu wiki?

The create action supports obj_type values docx (default), sheet, bitable, mindnote, file, doc, and slides. You can also specify a parent_node_token to nest the new page under an existing node.

Does feishu_wiki work without feishu_doc enabled?

No, feishu_doc is required. feishu_wiki only navigates the knowledge base structure; reading and editing the actual page content is handled by feishu_doc using the obj_token returned from the get action.

What permissions does the Feishu wiki tool need?

The tool requires the wiki:wiki scope for full read and write access, or wiki:wiki:readonly for read-only operations like listing spaces and nodes.