feishu-wiki

Navigate and manage Feishu wiki knowledge base spaces, nodes, and pages.

Updated Feb 16, 2026
One-click install
npx skills add https://github.com/travis-burmaster/agentbox --skill feishu-wiki-travis-burmaster
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: feishu-wiki
Source: https://github.com/travis-burmaster/agentbox/tree/main/agentfork/extensions/feishu/skills/feishu-wiki
Command: npx skills add https://github.com/travis-burmaster/agentbox --skill feishu-wiki-travis-burmaster

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing Feishu knowledge bases manually requires switching between the wiki UI and document editors, making it hard to programmatically organize spaces, locate pages, and edit wiki content at scale. ## Core Features & Use Cases - Space and Node Navigation: List all accessible wiki spaces and browse node hierarchies with optional parent filtering. - Node Lifecycle Management: Create, move, and rename wiki nodes with support for docx, sheet, bitable, mindnote, file, doc, and slides object types. - Wiki-Doc Workflow: Resolve a wiki token to its underlying document token, then read or edit content through the feishu_doc tool. - Use Case: Given a Feishu wiki URL, extract the token, locate the node, and update the page content programmatically without opening the Feishu web interface. ## Quick Start Use the feishu_wiki tool to list all nodes in my knowledge space and then read the content of the page at this wiki link.

Frequently Asked Questions about feishu-wiki

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

FAQPage Schema
How do I extract the token from a Feishu wiki URL?

Take the path segment after /wiki/ in the URL. For example, from https://xxx.feishu.cn/wiki/ABC123def, the token is ABC123def, which you pass to the get action.

How do I edit the content of a Feishu wiki page?

First call feishu_wiki with the get action to obtain the node's obj_token, then use feishu_doc with read or write actions on that obj_token. Wiki pages are documents, so content editing goes through feishu_doc.

What node types can I create in a Feishu wiki space?

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

Does feishu_wiki work without the feishu_doc tool enabled?

Navigation actions like listing spaces and nodes work, but reading or editing page content requires feishu_doc to be enabled. The configuration must set both wiki and doc to true under channels.feishu.tools.

What permissions does the Feishu wiki API require?

The app needs the wiki:wiki scope for full management or wiki:wiki:readonly for read-only access. Without these scopes, space and node operations will fail.