feishu-wiki

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

Updated Jun 19, 2026
One-click install
npx skills add https://github.com/AmirulAndalib/Vilvona-AI --skill feishu-wiki-amirulandalib
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: feishu-wiki
Source: https://github.com/AmirulAndalib/Vilvona-AI/tree/main/extensions/feishu/skills/feishu-wiki
Command: npx skills add https://github.com/AmirulAndalib/Vilvona-AI --skill feishu-wiki-amirulandalib

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Feishu knowledge bases are organized as wiki spaces with nested nodes, and finding or editing a specific page requires navigating opaque tokens and node hierarchies. This Skill provides a single tool to list spaces, browse nodes, and create, move, or rename wiki pages without manual API calls. ## Core Features & Use Cases - Space and Node Navigation: List all accessible wiki spaces and enumerate nodes within a space or under a parent node. - 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 through 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 pages inside the engineering knowledge base.

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 retrieve the node's obj_token. Then use the feishu_doc tool with that obj_token to read or write the document content, since wiki pages are documents underneath.

How to extract a wiki token from a Feishu 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 of feishu_wiki.

What page 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 page under an existing node.

Why does my Feishu wiki space_id cause errors when passed as a number?

Wiki space_id values are opaque strings, and long numeric-looking IDs lose precision when treated as JavaScript numbers. Always keep space_id quoted as a string in tool calls to avoid corrupting the ID suffix.

What permissions does the Feishu wiki tool require?

The Feishu app needs the wiki:wiki scope for full read and write operations, or wiki:wiki:readonly for read-only access. The feishu_doc tool must also be enabled because wiki content is edited through it.