
Feishu Wiki
- 456 installs
- 4.3k repo stars
- Updated March 29, 2026
- m1heng/clawdbot-feishu
feishu-wiki is an agent skill that reads, creates, organizes, and updates Feishu knowledge base pages through a feishu_wiki tool for developers who manage team wikis from inside a coding agent chat.
About
feishu-wiki is an agent skill from m1heng/clawdbot-feishu that exposes a single feishu_wiki tool for Feishu knowledge base navigation and page operations without leaving the chat. It activates when users mention knowledge base, wiki, or wiki links, and extracts node tokens from URLs such as https://xxx.feishu.cn/wiki/ABC123def where ABC123def becomes the token. Supported JSON actions include spaces to list accessible wiki spaces, nodes with space_id and optional parent_node_token to traverse the tree, and get with a token to return node details including node_token metadata. Developers reach for feishu-wiki when agents must list wiki spaces, browse node hierarchies, or fetch page details while implementing integrations, syncing documentation, or automating internal knowledge workflows on Feishu. The skill focuses on wiki API-style operations through structured action payloads rather than general Feishu chat or calendar features. Teams need appropriate Feishu API credentials configured in the hosting agent environment.
- Extracts wiki token from any Feishu wiki URL
- Lists all accessible knowledge spaces
- Navigates and lists nodes with optional parent filtering
- Creates new pages, sheets, bitables, mindnotes and more
- Supports move, rename, and detail retrieval actions
Feishu Wiki by the numbers
- 456 all-time installs (skills.sh)
- +3 installs in the week ending Aug 2, 2026 (Skillselion tracking)
- Ranked #1,852 of 16,556 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/m1heng/clawdbot-feishu --skill feishu-wikiAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 456 |
|---|---|
| repo stars | ★ 4.3k |
| Last updated | March 29, 2026 |
| Repository | m1heng/clawdbot-feishu ↗ |
How do agents read and update Feishu wiki pages?
Let their coding agent read, create, organize, and update pages inside a Feishu knowledge base without leaving the chat.
Who is it for?
Developers automating Feishu knowledge base navigation and page lookups through structured feishu_wiki tool calls in an agent.
Skip if: Teams not on Feishu or developers who need non-wiki Feishu features like chat bots, calendars, or spreadsheets without knowledge base access.
When should I use this skill?
The user mentions Feishu knowledge base, wiki links, or asks to list, browse, or fetch Feishu wiki pages and spaces.
What you get
Feishu wiki space listings, node trees, and node detail records with tokens for further page operations.
- Wiki space listings
- Node hierarchy results
- Page node detail records
By the numbers
- Exposes 3 feishu_wiki JSON actions: spaces, nodes, and get
- Uses a single feishu_wiki tool for all knowledge base operations
Files
Feishu Wiki Tool
Single tool feishu_wiki for knowledge base operations.
Token Extraction
From URL https://xxx.feishu.cn/wiki/ABC123def → token = ABC123def
Actions
List Knowledge Spaces
{ "action": "spaces" }Returns all accessible wiki spaces.
List Nodes
{ "action": "nodes", "space_id": "7xxx" }With parent:
{ "action": "nodes", "space_id": "7xxx", "parent_node_token": "wikcnXXX" }Get Node Details
{ "action": "get", "token": "ABC123def" }Returns: node_token, obj_token, obj_type, etc. Use obj_token with feishu_doc to read/write the document.
Create Node
{ "action": "create", "space_id": "7xxx", "title": "New Page" }With type and parent:
{ "action": "create", "space_id": "7xxx", "title": "Sheet", "obj_type": "sheet", "parent_node_token": "wikcnXXX" }obj_type: docx (default), sheet, bitable, mindnote, file, doc, slides
Move Node
{ "action": "move", "space_id": "7xxx", "node_token": "wikcnXXX" }To different location:
{ "action": "move", "space_id": "7xxx", "node_token": "wikcnXXX", "target_space_id": "7yyy", "target_parent_token": "wikcnYYY" }Rename Node
{ "action": "rename", "space_id": "7xxx", "node_token": "wikcnXXX", "title": "New Title" }Wiki-Doc Workflow
To edit a wiki page:
1. Get node: { "action": "get", "token": "wiki_token" } → returns obj_token 2. Read doc: feishu_doc { "action": "read", "doc_token": "obj_token" } 3. Write doc: feishu_doc { "action": "write", "doc_token": "obj_token", "content": "..." }
Configuration
channels:
feishu:
tools:
wiki: true # default: true
doc: true # required - wiki content uses feishu_docDependency: This tool requires feishu_doc to be enabled. Wiki pages are documents - use feishu_wiki to navigate, then feishu_doc to read/edit content.
Permissions
Required: wiki:wiki or wiki:wiki:readonly
Related skills
FAQ
What actions does the feishu-wiki skill support?
feishu-wiki exposes one feishu_wiki tool with JSON actions spaces, nodes, and get. spaces lists accessible wiki spaces, nodes traverses a space tree with space_id and optional parent_node_token, and get returns node details for a token.
How does feishu-wiki extract a wiki token from a URL?
feishu-wiki parses Feishu wiki URLs such as https://xxx.feishu.cn/wiki/ABC123def and uses ABC123def as the token for get and related node operations inside the feishu_wiki tool.