feishu-wiki

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

1|Updated Jun 9, 2026
One-click install
npx skills add https://github.com/JEROME-PRAKASH-L/openclaw --skill feishu-wiki-jerome-prakash-l
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: feishu-wiki
Source: https://github.com/JEROME-PRAKASH-L/openclaw/tree/main/extensions/feishu/skills/feishu-wiki
Command: npx skills add https://github.com/JEROME-PRAKASH-L/openclaw --skill feishu-wiki-jerome-prakash-l

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Working with Feishu knowledge bases requires navigating opaque space IDs and node tokens, and editing wiki pages requires resolving them to underlying document tokens. This Skill provides a single tool interface for listing spaces, browsing node trees, and creating, moving, or renaming wiki pages. ## 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, file, doc, slides), move nodes between spaces or parents, and rename nodes. - Wiki-Doc Workflow: Resolve a wiki token to its underlying obj_token, then read or edit 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, reads the document, and writes the updated 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 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 stored as documents.

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 or other node actions.

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 get corrupted in tool calls?

Space IDs are opaque strings that may look numeric. Always keep them quoted as strings, because passing a long numeric-looking ID as a number can lose precision due to JavaScript number limits.

What permissions does Feishu wiki access require?

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