feishu-wiki

Navigates and manages Feishu knowledge base wiki spaces, nodes, and pages.

Updated Mar 7, 2026
One-click install
npx skills add https://github.com/shalevamin/Tau_agent --skill feishu-wiki-shalevamin
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: feishu-wiki
Source: https://github.com/shalevamin/Tau_agent/tree/main/tau-agent-main/extensions/feishu/skills/feishu-wiki
Command: npx skills add https://github.com/shalevamin/Tau_agent --skill feishu-wiki-shalevamin

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Feishu knowledge bases organize content as wiki nodes rather than plain documents, making it hard to locate, create, move, or edit pages programmatically without understanding the wiki node structure and token system. ## Core Features & Use Cases - Space and Node Navigation: List all accessible wiki spaces and browse node hierarchies with optional parent filtering. - Node Management: Create, move, and rename wiki nodes of types including docx, sheet, bitable, mindnote, file, doc, and slides. - Wiki-Doc Workflow: Resolve a wiki token to its underlying obj_token, then read or write the page content through the feishu_doc tool. - Use Case: Given a Feishu wiki link like https://xxx.feishu.cn/wiki/ABC123def, extract the token, retrieve the node details, and update the page content in place. ## Quick Start Ask the agent to list all Feishu wiki spaces and show the nodes inside a chosen space.

Frequently Asked Questions about feishu-wiki

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

FAQPage Schema
How do I edit a Feishu wiki page programmatically?

First call feishu_wiki with the get action and the wiki token to obtain the obj_token. Then use feishu_doc with that obj_token to read or write the page content, since wiki pages are documents underneath.

How to 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.

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

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 node.

Does feishu_wiki work without feishu_doc enabled?

No. feishu_wiki only navigates the wiki structure; reading and writing page content requires feishu_doc to be enabled, since wiki pages are documents referenced by obj_token.

What permissions are required for Feishu wiki operations?

The Feishu app needs the wiki:wiki scope for full read and write operations, or wiki:wiki:readonly for read-only access to spaces and nodes.