feishu-wiki

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

1|Updated Mar 3, 2026
One-click install
npx skills add https://github.com/Cyandex/ErnOS --skill feishu-wiki-cyandex
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: feishu-wiki
Source: https://github.com/Cyandex/ErnOS/tree/main/extensions/feishu/skills/feishu-wiki
Command: npx skills add https://github.com/Cyandex/ErnOS --skill feishu-wiki-cyandex

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Locating and organizing content inside Feishu knowledge bases requires manual navigation through spaces and nested nodes, and editing wiki pages demands resolving wiki tokens to document tokens first. ## 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, 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 obj_token, then read or write the page 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, and edits the document content. ## Quick Start List all my Feishu wiki spaces and show the 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 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 feishu_doc 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?▼

In a URL like https://xxx.feishu.cn/wiki/ABC123def, the token is the final path segment, ABC123def. Pass this token to the get action to retrieve node details including obj_token and obj_type.

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

Does feishu_wiki work without the feishu_doc tool enabled?▼

No, feishu_wiki depends on feishu_doc for reading and editing page content. The wiki tool only navigates the node structure; both tools must be enabled in the channel configuration for full functionality.

What permissions are required for Feishu wiki operations?▼

The Feishu app needs the wiki:wiki scope for full read and write access, or wiki:wiki:readonly for read-only operations like listing spaces and nodes. Without these scopes, API calls will fail.